Fix bad substitution
This commit is contained in:
Vendored
+4
-3
@@ -43,9 +43,10 @@ export const BUNDLE_IDENTIFIER: string =
|
||||
* for each build. This should only be used for StatSig reporting and shouldn't
|
||||
* be used to identify a specific bundle.
|
||||
*/
|
||||
export const BUNDLE_DATE: number = !process.env.EXPO_PUBLIC_BUNDLE_DATE
|
||||
? 0
|
||||
: Number(process.env.EXPO_PUBLIC_BUNDLE_DATE)
|
||||
export const BUNDLE_DATE: number =
|
||||
process.env.EXPO_PUBLIC_BUNDLE_DATE === undefined
|
||||
? 0
|
||||
: Number(process.env.EXPO_PUBLIC_BUNDLE_DATE)
|
||||
|
||||
/**
|
||||
* The log level for the app.
|
||||
|
||||
Reference in New Issue
Block a user