diff --git a/web/src/App.tsx b/web/src/App.tsx index 2eb923d..8693d1b 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -28,13 +28,13 @@ function App() { initialState(); }, []); - return ( - !loading && ( - <> - - - - ) + return !loading ? ( + <> + + + + ) : ( + <> ); }