diff --git a/gui/src/js/freedata.ts b/gui/src/js/freedata.ts index c26154cf..17c816bd 100644 --- a/gui/src/js/freedata.ts +++ b/gui/src/js/freedata.ts @@ -105,8 +105,8 @@ export function getAppDataPath() { const platform = os.platform(); let appDataPath; - // Check if running in GitHub Actions - const isGitHubActions = process.env.GITHUB_ACTIONS === 'true'; + // Check if running in GitHub Actions + const isGitHubActions = process.env.GITHUB_ACTIONS === "true"; if (isGitHubActions) { return "/home/runner/work/FreeDATA/FreeDATA/gui/config"; } diff --git a/gui/src/store/settingsStore.js b/gui/src/store/settingsStore.js index a73eaabc..f7ff0865 100644 --- a/gui/src/store/settingsStore.js +++ b/gui/src/store/settingsStore.js @@ -7,12 +7,12 @@ const nconf = require("nconf"); var appDataPath = getAppDataPath(); var configFolder = path.join(appDataPath, "FreeDATA"); -let configFile = "config.json" +let configFile = "config.json"; -const isGitHubActions = process.env.GITHUB_ACTIONS === 'true'; +const isGitHubActions = process.env.GITHUB_ACTIONS === "true"; if (isGitHubActions) { - configFile = "example.json"; - configFolder = appDataPath; + configFile = "example.json"; + configFolder = appDataPath; } var configPath = path.join(configFolder, configFile);