about summary refs log tree commit diff
path: root/src/App.web.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2023-12-06 00:28:11 +0000
committerGitHub <noreply@github.com>2023-12-06 00:28:11 +0000
commitfab9f839d0234d1df7e595f53eff17177f5a9c67 (patch)
tree4a453fea5d587a57d192dd33082e6a280c4d0ce5 /src/App.web.tsx
parente7f973852f0b7f086d7648c4a978c0c46025c2eb (diff)
downloadvoidsky-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.web.tsx')
-rw-r--r--src/App.web.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx
index e939dda6d..2558392a5 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -9,7 +9,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 {useColorMode} from 'state/shell'
 import * as analytics from 'lib/analytics/analytics'
 import {Shell} from 'view/shell/index'
@@ -41,7 +40,6 @@ function InnerApp() {
 
   // init
   useEffect(() => {
-    initReminders()
     analytics.init()
     const account = persisted.get('session').currentAccount
     resumeSession(account)