From 4e3ca8ceb49f6246abbc9280c127442f9d9d50bc Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 28 Jul 2023 22:53:21 +0800 Subject: [PATCH] chore: fix App.tsx --- web/src/App.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 ? ( + <> + + + + ) : ( + <> ); }