chore: fix App.tsx

This commit is contained in:
Steven 2023-07-28 22:53:21 +08:00
parent 96a68ab117
commit 4e3ca8ceb4

View File

@ -28,13 +28,13 @@ function App() {
initialState(); initialState();
}, []); }, []);
return ( return !loading ? (
!loading && (
<> <>
<DemoBanner /> <DemoBanner />
<Outlet /> <Outlet />
</> </>
) ) : (
<></>
); );
} }