Skip to content

Commit

Permalink
Fix project home page
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmcc committed Nov 17, 2023
1 parent f3ce81f commit b643972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const router = createBrowserRouter(
createRoutesFromElements(
<Route path="/" element={<AuthenticatedContainer />}>
<Route path="/projects/:projectId">
<Route element={<ProjectHome />} loader={loadProject} />
<Route index element={<ProjectHome />} loader={loadProject} />
<Route path="/projects/:projectId/hosts" element={<p>hosts</p>} />
<Route
path="/projects/:projectId/hosts/groups"
Expand Down

0 comments on commit b643972

Please sign in to comment.