diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/hooks/useIntentHandler.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index f55217e56..c359b2bd6 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -13,7 +13,6 @@ import { } from '#/components/ageAssurance/AgeAssuranceRedirectDialog' import {useIntentDialogs} from '#/components/intents/IntentDialogs' import {Referrer} from '../../../modules/expo-bluesky-swiss-army' -import {IS_TESTFLIGHT} from '../app-info.web' import {useApplyPullRequestOTAUpdate} from './useOTAUpdates' type IntentType = 'compose' | 'verify-email' | 'age-assurance' | 'apply-ota' @@ -97,10 +96,6 @@ export function useIntentHandler() { return } case 'apply-ota': { - if (!isNative || !IS_TESTFLIGHT) { - return - } - const channel = params.get('channel') if (!channel) { Alert.alert('Error', 'No channel provided to look for.') |