Skip to content

Commit

Permalink
Update home.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kouzikouzi authored Feb 22, 2024
1 parent 14b4e72 commit feed730
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/components/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ function Screen() {
<SideBar className={isHome ? styles["sidebar-show"] : ""} />

<div className={styles["window-content"]} id={SlotID.AppBody}>
<Routes>
{ tbdsCode === 'lab.ourtbds.com' && (
<Route path={Path.Home} element={<Chat />} />
<Route path={Path.NewChat} element={<NewChat />} />
<Route path={Path.Masks} element={<MaskPage />} />
<Route path={Path.Chat} element={<Chat />} />
<Route path={Path.Settings} element={<Settings />} />
<Routes>
<Route path={Path.Home} element={<Chat />} />
<Route path={Path.NewChat} element={<NewChat />} />
<Route path={Path.Masks} element={<MaskPage />} />
<Route path={Path.Chat} element={<Chat />} />
<Route path={Path.Settings} element={<Settings />} />
</Routes>
)}
</Routes>
</div>
</>
)}
Expand Down

0 comments on commit feed730

Please sign in to comment.