Skip to content

Commit

Permalink
chore: rename sidebar items
Browse files Browse the repository at this point in the history
  • Loading branch information
prosfus committed Jan 3, 2025
1 parent 4e08229 commit 5016ee0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/components/Sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ function AppSidebar() {
path: "/services",
},
{
title: "Minio",
title: "Buckets",
icon: <Database size={20} />,
path: "/minio",
},
{
title: "Notebooks",
icon: <Notebook size={20} />,
path: "/notebooks",
},
{
title: "Info",
icon: <Info size={20} />,
path: "/info",
},
{
title: "Jupyter Notebook",
icon: <Notebook size={20} />,
path: "/jupyter-notebook",
},
];

function handleLogout() {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function AppRouter() {
<Route path="services/*" element={<ServicesRouter />} />
<Route path="minio/*" element={<MinioRouter />} />
<Route path="info" element={<InfoView />} />
<Route path="jupyter-notebook" element={<JunoView />} />
<Route path="notebooks" element={<JunoView />} />
</Route>
<Route path="/login" element={<Login />} />
<Route path="/terms-of-use" element={<TermsOfUse />} />
Expand Down

0 comments on commit 5016ee0

Please sign in to comment.