diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-22 11:11:44 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-22 11:11:44 -0400 |
| commit | c02343e68874efd57c2e312cb6b7e4f02222e43a (patch) | |
| tree | 31e7a46aca624de9eeb778f2337b2c0d9906b628 /src/api/lsfgApi.ts | |
| parent | 97bb41947bd44a712ad26905771a9d2cc4692878 (diff) | |
| download | decky-lsfg-vk-c02343e68874efd57c2e312cb6b7e4f02222e43a.tar.gz decky-lsfg-vk-c02343e68874efd57c2e312cb6b7e4f02222e43a.zip | |
add workaround env vars, rm old tests
Diffstat (limited to 'src/api/lsfgApi.ts')
| -rw-r--r-- | src/api/lsfgApi.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/lsfgApi.ts b/src/api/lsfgApi.ts index 74caa57..0b221e9 100644 --- a/src/api/lsfgApi.ts +++ b/src/api/lsfgApi.ts @@ -101,14 +101,14 @@ export const getLaunchScriptContent = callable<[], FileContentResult>("get_launc // Updated config function using centralized configuration export const updateLsfgConfig = callable< - [string, number, number, boolean, boolean, string, number, boolean, boolean], + [string, number, number, boolean, boolean, string, number, boolean, boolean, boolean, boolean], ConfigUpdateResult >("update_lsfg_config"); // Helper function to create config update from configuration object export const updateLsfgConfigFromObject = async (config: ConfigurationData): Promise<ConfigUpdateResult> => { const args = ConfigurationManager.createArgsFromConfig(config); - return updateLsfgConfig(...args as [string, number, number, boolean, boolean, string, number, boolean, boolean]); + return updateLsfgConfig(...args as [string, number, number, boolean, boolean, string, number, boolean, boolean, boolean, boolean]); }; // Self-updater API functions |
