about summary refs log tree commit diff
path: root/app.config.js
diff options
context:
space:
mode:
authorhailey <me@haileyok.com>2025-07-24 21:07:06 -0700
committerGitHub <noreply@github.com>2025-07-24 21:07:06 -0700
commitc6b578fe918b56d83c683f089ca7266535bab766 (patch)
tree441fe74752fbabe001723d89448a2d7e1709b22a /app.config.js
parentcaeaff157c10323c10bcdc551e9096aa0ea62b61 (diff)
downloadvoidsky-c6b578fe918b56d83c683f089ca7266535bab766.tar.zst
fix final final final (#8719)
Diffstat (limited to 'app.config.js')
-rw-r--r--app.config.js8
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)