diff --git a/ts/RemoteConfig.dom.ts b/ts/RemoteConfig.dom.ts index 1280b7a080..a2e2932f87 100644 --- a/ts/RemoteConfig.dom.ts +++ b/ts/RemoteConfig.dom.ts @@ -48,8 +48,6 @@ const SemverKeys = [ 'desktop.retireAccessKeyGroupSend.prod', 'desktop.keyTransparency.beta', 'desktop.keyTransparency.prod', - 'desktop.binaryServiceId.beta', - 'desktop.binaryServiceId.prod', ] as const; export type SemverKeyType = ArrayValues; diff --git a/ts/util/isProtoBinaryEncodingEnabled.dom.ts b/ts/util/isProtoBinaryEncodingEnabled.dom.ts index 43c7a5347b..73f1298db5 100644 --- a/ts/util/isProtoBinaryEncodingEnabled.dom.ts +++ b/ts/util/isProtoBinaryEncodingEnabled.dom.ts @@ -3,7 +3,6 @@ import { isTestOrMockEnvironment } from '../environment.std.js'; import { isStagingServer } from './isStagingServer.dom.js'; -import { isFeaturedEnabledNoRedux } from './isFeatureEnabled.dom.js'; export function isProtoBinaryEncodingEnabled(): boolean { if (isTestOrMockEnvironment()) { @@ -14,8 +13,6 @@ export function isProtoBinaryEncodingEnabled(): boolean { return true; } - return isFeaturedEnabledNoRedux({ - betaKey: 'desktop.binaryServiceId.beta', - prodKey: 'desktop.binaryServiceId.prod', - }); + // TODO: DESKTOP-8938 + return false; }