Fix bad substitution

This commit is contained in:
Eric Bailey
2025-07-30 13:35:08 -05:00
parent 3dc6dcd9b9
commit fa8835243c
+2 -1
View File
@@ -43,7 +43,8 @@ export const BUNDLE_IDENTIFIER: string =
* for each build. This should only be used for StatSig reporting and shouldn't * for each build. This should only be used for StatSig reporting and shouldn't
* be used to identify a specific bundle. * be used to identify a specific bundle.
*/ */
export const BUNDLE_DATE: number = !process.env.EXPO_PUBLIC_BUNDLE_DATE export const BUNDLE_DATE: number =
process.env.EXPO_PUBLIC_BUNDLE_DATE === undefined
? 0 ? 0
: Number(process.env.EXPO_PUBLIC_BUNDLE_DATE) : Number(process.env.EXPO_PUBLIC_BUNDLE_DATE)