Skip to content

Commit 34119dc

Browse files
authored
Merge pull request #1416 from session-foundation/dev
Merge dev to release/1.16.0
2 parents 99aa342 + 3bac1b0 commit 34119dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

preload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ window.sessionFeatureFlags = {
5858
useTestNet: isTestNet() || isTestIntegration(),
5959
useClosedGroupV2QAButtons: false, // TODO DO NOT MERGE Remove after QA
6060
replaceLocalizedStringsWithKeys: false,
61-
useReleaseChannels: false,
61+
useReleaseChannels: true,
6262
debug: {
6363
debugLogging: !isEmpty(process.env.SESSION_DEBUG),
6464
debugLibsessionDumps: !isEmpty(process.env.SESSION_DEBUG_LIBSESSION_DUMPS),

ts/components/dialog/debug/constants.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ type DebugFeatureFlagsType = {
77
};
88

99
export const DEBUG_FEATURE_FLAGS: DebugFeatureFlagsType = {
10-
DEV: ['useReleaseChannels'],
10+
// NOTE Put new feature flags in here during development so they are not available in production environments. Remove from here when they are ready for QA and production
11+
DEV: [],
1112
UNSUPPORTED: ['useTestNet'],
1213
UNTESTED: ['useOnionRequests', 'replaceLocalizedStringsWithKeys'],
1314
};

0 commit comments

Comments
 (0)