From 420a543f8af3075502b0a7530a0fa06af264eb8b Mon Sep 17 00:00:00 2001 From: polwex Date: Tue, 18 Nov 2025 16:59:24 +0700 Subject: refactoring gui too, improvements to Nostr user logic --- gui/src/App.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'gui/src/App.tsx') 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() { {/* {isMobile ? : } */} - {modal && modal} -- cgit v1.2.3