Remove unnecessary testflight check

This commit is contained in:
Eric Bailey
2025-07-23 19:08:53 -05:00
parent 3e2f91b8b1
commit 275dccb25b
+1 -2
View File
@@ -15,8 +15,7 @@ export const ENV: string = process.env.EXPO_PUBLIC_ENV
/** /**
* Indicates whether the app is running in TestFlight * Indicates whether the app is running in TestFlight
*/ */
export const IS_TESTFLIGHT = export const IS_TESTFLIGHT = ENV === 'testflight'
ENV === 'testflight' || ENV.startsWith('testflight')
/** /**
* Indicates whether the app is __DEV__ * Indicates whether the app is __DEV__