Skip to content

Commit

Permalink
allow screenshot toggle in android production
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo committed Nov 29, 2024
1 parent cc8da86 commit 87f1b91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {SafeAreaView} from 'react-native-safe-area-context'

import {Icon} from '../../../../components/Icon'
import {Spacer} from '../../../../components/Spacer/Spacer'
import {isNightly, isProduction} from '../../../../kernel/env'
import {isNightly} from '../../../../kernel/env'
import {useLanguage} from '../../../../kernel/i18n'
import {themeNames} from '../../../../kernel/i18n/global-messages'
import {defaultLanguage} from '../../../../kernel/i18n/languages'
Expand Down Expand Up @@ -40,7 +40,7 @@ export const ApplicationSettingsScreen = () => {
const {network} = useSelectedNetwork()

const {data: screenShareEnabled} = useScreenShareSettingEnabled()
const displayScreenShareSetting = Platform.OS === 'android' && !isProduction
const displayScreenShareSetting = Platform.OS === 'android'

const onToggleAuthWithOs = () => {
if (authSetting === 'os') {
Expand Down

0 comments on commit 87f1b91

Please sign in to comment.