add a debug button

This commit is contained in:
Hailey
2025-07-24 21:06:41 -07:00
parent 5b8c2721ee
commit 968374464e
3 changed files with 38 additions and 13 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)