diff options
author | dan <dan.abramov@gmail.com> | 2024-12-13 17:14:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-13 17:14:41 +0000 |
commit | e2a7965e438db9f70d76d2d7a911aa4c4a42c122 (patch) | |
tree | d75b04cf03ad3300feb221341580cca36a9c7005 /src/env.ts | |
parent | 5655241bef22264ad9da3d9ba2074af4e9ba7dd0 (diff) | |
download | voidsky-e2a7965e438db9f70d76d2d7a911aa4c4a42c122.tar.zst |
Gate bitdrift integration (#7088)
* Move Statsig init call earlier * Gate Bitdrift init call * Remove IS_TEST env constant * Mock statsig
Diffstat (limited to 'src/env.ts')
-rw-r--r-- | src/env.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/env.ts b/src/env.ts index fbcc15f57..4d1b55a4e 100644 --- a/src/env.ts +++ b/src/env.ts @@ -1,4 +1,3 @@ -export const IS_TEST = process.env.EXPO_PUBLIC_ENV === 'test' export const IS_DEV = __DEV__ export const IS_PROD = !IS_DEV export const LOG_DEBUG = process.env.EXPO_PUBLIC_LOG_DEBUG || '' |