signal-desktop/ts/components/fun/isFunPickerEnabled.tsx

7 lines
242 B
TypeScript

// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as RemoteConfig from '../../RemoteConfig.js';
export function isFunPickerEnabled(): boolean {
return RemoteConfig.isEnabled('desktop.funPicker');
}