From 6077c5e95e372d810e4de84eac274d991ed869ac Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 24 Jul 2025 14:24:50 -0700 Subject: [PATCH] add a native check to the intent --- src/lib/hooks/useIntentHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index a3ec054b3d..f55217e567 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -97,7 +97,7 @@ export function useIntentHandler() { return } case 'apply-ota': { - if (!IS_TESTFLIGHT) { + if (!isNative || !IS_TESTFLIGHT) { return }