about summary refs log tree commit diff
path: root/app.config.js
diff options
context:
space:
mode:
authorhailey <me@haileyok.com>2025-07-25 08:57:21 -0700
committerGitHub <noreply@github.com>2025-07-25 08:57:21 -0700
commit15abdc67cf77444f20c760537e0e5ca4f9aca5d5 (patch)
tree7766b3c511e04855b69f23e7ffc5aedf38739440 /app.config.js
parentc6b578fe918b56d83c683f089ca7266535bab766 (diff)
downloadvoidsky-15abdc67cf77444f20c760537e0e5ca4f9aca5d5.tar.zst
simplify logic for pull request OTAs (#8720)
* simplify logic for pull request OTAs

* just render deep link in the text

* dont download update until approved
Diffstat (limited to 'app.config.js')
-rw-r--r--app.config.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app.config.js b/app.config.js
index 26d1dcae5..057806f79 100644
--- a/app.config.js
+++ b/app.config.js
@@ -26,8 +26,7 @@ module.exports = function (_config) {
     ...(IS_DEV || IS_TESTFLIGHT ? [] : []),
   ]
 
-  const UPDATES_ENABLED =
-    IS_TESTFLIGHT !== undefined || IS_PRODUCTION !== undefined
+  const UPDATES_ENABLED = IS_TESTFLIGHT || IS_PRODUCTION
 
   const USE_SENTRY = Boolean(process.env.SENTRY_AUTH_TOKEN)