diff options
author | hailey <me@haileyok.com> | 2025-07-24 21:07:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-24 21:07:06 -0700 |
commit | c6b578fe918b56d83c683f089ca7266535bab766 (patch) | |
tree | 441fe74752fbabe001723d89448a2d7e1709b22a /src/lib | |
parent | caeaff157c10323c10bcdc551e9096aa0ea62b61 (diff) | |
download | voidsky-c6b578fe918b56d83c683f089ca7266535bab766.tar.zst |
fix final final final (#8719)
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.') |