|
|
@@ -26,6 +26,7 @@ import Playground from './pages/Playground/Playground.js';
|
|
|
import OAuth2Callback from "./components/OAuth2Callback.js";
|
|
|
import PersonalSetting from './components/PersonalSetting.js';
|
|
|
import Setup from './pages/Setup/index.js';
|
|
|
+import SetupCheck from './components/SetupCheck';
|
|
|
|
|
|
const Home = lazy(() => import('./pages/Home'));
|
|
|
const Detail = lazy(() => import('./pages/Detail'));
|
|
|
@@ -35,7 +36,7 @@ function App() {
|
|
|
const location = useLocation();
|
|
|
|
|
|
return (
|
|
|
- <>
|
|
|
+ <SetupCheck>
|
|
|
<Routes>
|
|
|
<Route
|
|
|
path='/'
|
|
|
@@ -286,7 +287,7 @@ function App() {
|
|
|
/>
|
|
|
<Route path='*' element={<NotFound />} />
|
|
|
</Routes>
|
|
|
- </>
|
|
|
+ </SetupCheck>
|
|
|
);
|
|
|
}
|
|
|
|