refactor: remove gpt demo

This commit is contained in:
Tristan Yang
2023-04-11 09:39:37 +08:00
parent b700a24011
commit 8d3fd646c3
4 changed files with 0 additions and 78 deletions
-2
View File
@@ -22,7 +22,6 @@ const SettingChannelPage = lazy(() => import("./settingChannel"));
const SettingDMPage = lazy(() => import("./settingDM"));
const SettingPage = lazy(() => import("./setting"));
const ResourceManagement = lazy(() => import("./resources"));
const GPTDemo = lazy(() => import("./gptDemo"));
const GuestLogin = lazy(() => import("./guest"));
const ChatPage = lazy(() => import("./chat"));
const HomePage = lazy(() => import("./home"));
@@ -59,7 +58,6 @@ const PageRoutes = () => {
return (
<HashRouter>
<Routes>
<Route path="/gpt" element={<LazyIt><GPTDemo /></LazyIt>} />
<Route path="/guest_login" element={<LazyIt><GuestLogin /></LazyIt>} />
<Route path="/cb/:type/:payload" element={<LazyIt><CallbackPage /></LazyIt>} />
<Route path="/oauth/:token" element={<LazyIt><OAuthPage /></LazyIt>} />