This commit is contained in:
2023-06-16 01:22:08 +08:00
parent cd156c5595
commit 6a798a7047
53 changed files with 1328 additions and 5252 deletions
+4 -4
View File
@@ -34,9 +34,9 @@ export function Loading(props: { noLogo?: boolean }) {
);
}
const Settings = dynamic(async () => (await import("./settings")).Settings, {
loading: () => <Loading noLogo />,
});
// const Settings = dynamic(async () => (await import("./settings")).Settings, {
// loading: () => <Loading noLogo />,
// });
const Chat = dynamic(async () => (await import("./chat")).Chat, {
loading: () => <Loading noLogo />,
@@ -135,7 +135,7 @@ function Screen() {
<Route path={Path.NewChat} element={<NewChat />} />
<Route path={Path.Masks} element={<MaskPage />} />
<Route path={Path.Chat} element={<Chat />} />
<Route path={Path.Settings} element={<Settings />} />
{/* <Route path={Path.Settings} element={<Settings />} /> */}
</Routes>
</div>
</>