mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-18 15:45:39 +01:00
17 lines
379 B
TypeScript
17 lines
379 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as RemoteConfig from '../RemoteConfig';
|
|
import { isProduction } from './version';
|
|
|
|
export function isLowerHandSuggestionEnabled(): boolean {
|
|
if (
|
|
isProduction(window.getVersion()) ||
|
|
!RemoteConfig.isEnabled('desktop.internalUser')
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|