We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78fa88 commit 9a06d69Copy full SHA for 9a06d69
site/src/AppRouter.tsx
@@ -75,9 +75,30 @@ export const AppRouter: React.FC = () => (
75
/>
76
</Route>
77
78
- <Route path="users" element={<UsersPage />} />
79
- <Route path="orgs" element={<OrganizationsPage />} />
80
- <Route path="settings" element={<SettingsPage />} />
+ <Route
+ path="users"
+ element={
81
+ <AuthAndNav>
82
+ <UsersPage />
83
+ </AuthAndNav>
84
+ }
85
+ />
86
87
+ path="orgs"
88
89
90
+ <OrganizationsPage />
91
92
93
94
95
+ path="settings"
96
97
98
+ <SettingsPage />
99
100
101
102
103
<Route path="preferences" element={<PreferencesLayout />}>
104
<Route index element={<Navigate to="account" />} />
0 commit comments