From 8bd98cc2239c2b1f935854d4ea3e76a8cf061c5e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 23 Jul 2025 11:46:36 -0500 Subject: [PATCH] Update IS_TESTFLIGHT to include testflight-android --- src/env.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/env.ts b/src/env.ts index 1ed4bb8423..fc3cbed1db 100644 --- a/src/env.ts +++ b/src/env.ts @@ -8,7 +8,8 @@ export const ENV: string = process.env.EXPO_PUBLIC_ENV /** * Indicates whether the app is running in TestFlight */ -export const IS_TESTFLIGHT = ENV === 'testflight' +export const IS_TESTFLIGHT = + ENV === 'testflight' || ENV.startsWith('testflight') /** * Indicates whether the app is __DEV__