From b4118e9b050f5f7eb928c84ef3fe378edebce732 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 23 Jul 2025 19:08:53 -0500 Subject: [PATCH] Remove unnecessary testflight check --- src/env/common.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/env/common.ts b/src/env/common.ts index e18fb49520..0abfb2e307 100644 --- a/src/env/common.ts +++ b/src/env/common.ts @@ -15,8 +15,7 @@ export const ENV: string = process.env.EXPO_PUBLIC_ENV /** * Indicates whether the app is running in TestFlight */ -export const IS_TESTFLIGHT = - ENV === 'testflight' || ENV.startsWith('testflight') +export const IS_TESTFLIGHT = ENV === 'testflight' /** * Indicates whether the app is __DEV__