fix IS_DEV in app config (#9769)
This commit is contained in:
+1
-1
@@ -15,7 +15,7 @@ module.exports = function (_config) {
|
|||||||
|
|
||||||
const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight'
|
const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight'
|
||||||
const IS_PRODUCTION = process.env.EXPO_PUBLIC_ENV === 'production'
|
const IS_PRODUCTION = process.env.EXPO_PUBLIC_ENV === 'production'
|
||||||
const IS_DEV = !IS_TESTFLIGHT || !IS_PRODUCTION
|
const IS_DEV = !IS_TESTFLIGHT && !IS_PRODUCTION
|
||||||
|
|
||||||
const ASSOCIATED_DOMAINS = [
|
const ASSOCIATED_DOMAINS = [
|
||||||
'applinks:bsky.app',
|
'applinks:bsky.app',
|
||||||
|
|||||||
Reference in New Issue
Block a user