From a97dc7494f3a14c7219461f342b61953c7d938fd Mon Sep 17 00:00:00 2001 From: Alec Rippberger Date: Thu, 26 Sep 2024 10:40:16 -0500 Subject: [PATCH] Remove debug code. --- apps/desktop/src/main.ts | 3 --- .../src/platform/services/config/default-config.service.ts | 4 ---- 2 files changed, 7 deletions(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index a198967b2d..86d07440a7 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -84,9 +84,6 @@ export class Main { // on ready stuff... }); - // app.commandLine.appendSwitch("ignore-certificate-errors"); - // app.commandLine.appendSwitch("allow-insecure-localhost", "true"); - if (appDataPath != null) { app.setPath("userData", appDataPath); } diff --git a/libs/common/src/platform/services/config/default-config.service.ts b/libs/common/src/platform/services/config/default-config.service.ts index 6ecfad02a9..e0603ed509 100644 --- a/libs/common/src/platform/services/config/default-config.service.ts +++ b/libs/common/src/platform/services/config/default-config.service.ts @@ -123,10 +123,6 @@ export class DefaultConfigService implements ConfigService { serverConfig: ServerConfig | null, flag: Flag, ) { - // if (flag == FeatureFlag.ExtensionRefresh) { - // return true as FeatureFlagValueType; - // } - if (serverConfig?.featureStates == null || serverConfig.featureStates[flag] == null) { return DefaultFeatureFlagValue[flag]; }