File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ export const getGOGLinuxInstallersLangs = async (appName: string) =>
68
68
ipcRenderer . invoke ( 'getGOGLinuxInstallersLangs' , appName )
69
69
export const getAlternativeWine = async ( ) =>
70
70
ipcRenderer . invoke ( 'getAlternativeWine' )
71
- export const getLocalPeloadPath = async ( ) =>
72
- ipcRenderer . invoke ( 'getLocalPeloadPath ' )
71
+ export const getLocalPreloadPath = async ( ) =>
72
+ ipcRenderer . invoke ( 'getLocalPreloadPath ' )
73
73
export const getShellPath = async ( saveLocation : string ) =>
74
74
ipcRenderer . invoke ( 'getShellPath' , saveLocation )
75
75
export const callTool = async ( toolArgs : Tools ) =>
Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ interface AsyncIPCFunctions extends HyperPlayAsyncIPCFunctions {
365
365
} >
366
366
logoutLegendary : ( ) => Promise < void >
367
367
getAlternativeWine : ( ) => Promise < WineInstallation [ ] >
368
- getLocalPeloadPath : ( ) => Promise < string >
368
+ getLocalPreloadPath : ( ) => Promise < string >
369
369
readConfig : ( config_class : 'library' | 'user' ) => Promise < GameInfo [ ] | string >
370
370
requestSettings : ( appName : string ) => Promise < AppSettings | GameSettings >
371
371
writeConfig : ( args : { appName : string ; config : Partial < AppSettings > } ) => void
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ function WebView({
114
114
useEffect ( ( ) => {
115
115
let mounted = true
116
116
const fetchLocalPreloadPath = async ( ) => {
117
- const path = ( await window . api . getLocalPeloadPath ( ) ) as unknown
117
+ const path = ( await window . api . getLocalPreloadPath ( ) ) as unknown
118
118
if ( mounted ) {
119
119
setPreloadPath ( path as string )
120
120
}
You can’t perform that action at this time.
0 commit comments