diff options
author | hailey <me@haileyok.com> | 2025-07-24 21:07:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-24 21:07:06 -0700 |
commit | c6b578fe918b56d83c683f089ca7266535bab766 (patch) | |
tree | 441fe74752fbabe001723d89448a2d7e1709b22a /app.config.js | |
parent | caeaff157c10323c10bcdc551e9096aa0ea62b61 (diff) | |
download | voidsky-c6b578fe918b56d83c683f089ca7266535bab766.tar.zst |
fix final final final (#8719)
Diffstat (limited to 'app.config.js')
-rw-r--r-- | app.config.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/app.config.js b/app.config.js index e065d0d73..26d1dcae5 100644 --- a/app.config.js +++ b/app.config.js @@ -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) |