From 60d11773618f832e726a72ccac25cdd4a90c1b40 Mon Sep 17 00:00:00 2001 From: Alec Rippberger Date: Thu, 26 Sep 2024 10:39:44 -0500 Subject: [PATCH] Comment out debug code. --- apps/desktop/src/main.ts | 4 ++-- .../src/platform/services/config/default-config.service.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index 2651dedaddc..a198967b2de 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -84,8 +84,8 @@ export class Main { // on ready stuff... }); - app.commandLine.appendSwitch("ignore-certificate-errors"); - app.commandLine.appendSwitch("allow-insecure-localhost", "true"); + // 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 b0a057acc93..6ecfad02a97 100644 --- a/libs/common/src/platform/services/config/default-config.service.ts +++ b/libs/common/src/platform/services/config/default-config.service.ts @@ -123,9 +123,9 @@ export class DefaultConfigService implements ConfigService { serverConfig: ServerConfig | null, flag: Flag, ) { - if (flag == FeatureFlag.ExtensionRefresh) { - return true as FeatureFlagValueType; - } + // if (flag == FeatureFlag.ExtensionRefresh) { + // return true as FeatureFlagValueType; + // } if (serverConfig?.featureStates == null || serverConfig.featureStates[flag] == null) { return DefaultFeatureFlagValue[flag];