diff options
author | Hailey <me@haileyok.com> | 2024-04-12 14:51:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 14:51:53 -0700 |
commit | f91aa37c6bd900bdc4eec1095c9ecd83da2f13f2 (patch) | |
tree | adf306037f951e0d18500fa928de999794c6a863 /src/App.native.tsx | |
parent | 1f587ea4b66a6680d8d1fe06b1705994165973d5 (diff) | |
download | voidsky-f91aa37c6bd900bdc4eec1095c9ecd83da2f13f2.tar.zst |
Enable updates for `production` behind `receive_updates` gate (#3496)
* add gate type * gate the updates * enable updates in `production` * web placeholder for `useOTAUpdates()` * update comment
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 9abe4a559..ede587c89 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -19,7 +19,6 @@ import {init as initPersistedState} from '#/state/persisted' import * as persisted from '#/state/persisted' import {Provider as LabelDefsProvider} from '#/state/preferences/label-defs' import {useIntentHandler} from 'lib/hooks/useIntentHandler' -import {useOTAUpdates} from 'lib/hooks/useOTAUpdates' import {useNotificationsListener} from 'lib/notifications/notifications' import {QueryProvider} from 'lib/react-query' import {s} from 'lib/styles' @@ -58,7 +57,6 @@ function InnerApp() { const {_} = useLingui() useIntentHandler() - useOTAUpdates() // init useEffect(() => { |