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];