fix final final final (#8719)

This commit is contained in:
hailey
2025-07-24 21:07:06 -07:00
committed by GitHub
parent caeaff157c
commit c6b578fe91
4 changed files with 43 additions and 15 deletions
+2 -6
View File
@@ -26,12 +26,8 @@ module.exports = function (_config) {
...(IS_DEV || IS_TESTFLIGHT ? [] : []),
]
const UPDATES_CHANNEL = IS_TESTFLIGHT
? 'testflight'
: IS_PRODUCTION
? 'production'
: undefined
const UPDATES_ENABLED = !!UPDATES_CHANNEL
const UPDATES_ENABLED =
IS_TESTFLIGHT !== undefined || IS_PRODUCTION !== undefined
const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN)