diff options
Diffstat (limited to 'gui/src/App.tsx')
| -rw-r--r-- | gui/src/App.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gui/src/App.tsx b/gui/src/App.tsx index 415cb66..28398e4 100644 --- a/gui/src/App.tsx +++ b/gui/src/App.tsx @@ -14,9 +14,8 @@ const queryClient = new QueryClient(); function App() { const [loading, setLoading] = useState(true); console.log("NOSTRILL INIT"); - const { init, modal } = useLocalState((s) => ({ + const { init } = useLocalState((s) => ({ init: s.init, - modal: s.modal, })); useEffect(() => { init().then((_res: any) => { @@ -36,7 +35,6 @@ function App() { <QueryClientProvider client={queryClient}> {/* {isMobile ? <MobileUI /> : <DesktopUI />} */} <Router /> - {modal && modal} <Toaster position="top-center" /> </QueryClientProvider> </ThemeProvider> |
