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__