about summary refs log tree commit diff
path: root/src/App.web.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2023-11-01 10:15:37 -0500
committerEric Bailey <git@esb.lol>2023-11-01 10:15:37 -0500
commitb42806a6e0466619ecf2db014af5f0c1f90b805a (patch)
treedddc945f26920d9194530004b06b76c0d0f08019 /src/App.web.tsx
parentadb5ce29614e21e1f061fb4be9c4a7887d0b6869 (diff)
downloadvoidsky-b42806a6e0466619ecf2db014af5f0c1f90b805a.tar.zst
Revise icons startup code
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r--src/App.web.tsx16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx
index a9123cc58..3b67af0dc 100644
--- a/src/App.web.tsx
+++ b/src/App.web.tsx
@@ -1,15 +1,18 @@
+import 'lib/sentry' // must be near top
+
 import React, {useState, useEffect} from 'react'
-import 'lib/sentry' // must be relatively on top
+import {observer} from 'mobx-react-lite'
+import {QueryClientProvider} from '@tanstack/react-query'
 import {SafeAreaProvider} from 'react-native-safe-area-context'
 import {RootSiblingParent} from 'react-native-root-siblings'
-import * as view from './view/index'
+
+import 'view/icons'
+
 import * as analytics from 'lib/analytics/analytics'
 import {RootStoreModel, setupState, RootStoreProvider} from './state'
-import {Shell} from './view/shell/index'
-import {ToastContainer} from './view/com/util/Toast.web'
+import {Shell} from 'view/shell/index'
+import {ToastContainer} from 'view/com/util/Toast.web'
 import {ThemeProvider} from 'lib/ThemeContext'
-import {observer} from 'mobx-react-lite'
-import {QueryClientProvider} from '@tanstack/react-query'
 import {queryClient} from 'lib/react-query'
 
 const App = observer(function AppImpl() {
@@ -19,7 +22,6 @@ const App = observer(function AppImpl() {
 
   // init
   useEffect(() => {
-    view.setup()
     setupState().then(store => {
       setRootStore(store)
       analytics.init(store)