Standardize feature flag for internal testing

This commit is contained in:
Scott Nonnenberg 2021-08-05 10:00:33 -07:00 committed by GitHub
parent 0af53ef120
commit ebb87b12d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ export function isScreenSharingEnabled(): boolean {
const version = window.getVersion?.();
return Boolean(
RemoteConfig.isEnabled('desktop.worksAtSignal') ||
RemoteConfig.isEnabled('desktop.internalUser') ||
RemoteConfig.isEnabled('desktop.screensharing2') ||
(version && isBeta(version))
);