diff options
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) |