diff options
author | dan <dan.abramov@gmail.com> | 2023-12-06 00:28:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 00:28:11 +0000 |
commit | fab9f839d0234d1df7e595f53eff17177f5a9c67 (patch) | |
tree | 4a453fea5d587a57d192dd33082e6a280c4d0ce5 /src/App.native.tsx | |
parent | e7f973852f0b7f086d7648c4a978c0c46025c2eb (diff) | |
download | voidsky-fab9f839d0234d1df7e595f53eff17177f5a9c67.tar.zst |
Fix email confirmation dialog on startup (#2097)
* Move init time logging to a fn, add guard * Fix email confirmation dialog on startup
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 64c7e718f..8168f39d4 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -11,7 +11,6 @@ import {enableFreeze} from 'react-native-screens' import 'view/icons' import {init as initPersistedState} from '#/state/persisted' -import {init as initReminders} from '#/state/shell/reminders' import {listenSessionDropped} from './state/events' import {useColorMode} from 'state/shell' import {ThemeProvider} from 'lib/ThemeContext' @@ -48,7 +47,6 @@ function InnerApp() { // init useEffect(() => { - initReminders() analytics.init() notifications.init(queryClient) listenSessionDropped(() => { |