Skip to content

Commit

Permalink
fix: nested chat route under User Screen to show side panel (#3265)
Browse files Browse the repository at this point in the history
* nested chat route under userscreen

* removed commented route
  • Loading branch information
Aad1tya27 authored Jan 14, 2025
1 parent 8de0476 commit 197092f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,8 @@ function app(): JSX.Element {
<Route element={<SecuredRouteForUser />}>
<Route path="/user/organizations" element={<Organizations />} />
<Route path="/user/settings" element={<Settings />} />
<Route path="/user/chat/:orgId" element={<Chat />} />
{/* <Route path="/user/chat" element={<Chat />} /> */}
<Route element={<UserScreen />}>
<Route path="/user/chat/:orgId" element={<Chat />} />
<Route path="/user/organizations" element={<Organizations />} />
<Route path="/user/organization/:orgId" element={<Posts />} />
<Route path="/user/people/:orgId" element={<People />} />
Expand Down

0 comments on commit 197092f

Please sign in to comment.