Skip to content

Commit

Permalink
Revert "feat removed tags page from ui-aim (G-Research#59)"
Browse files Browse the repository at this point in the history
This reverts commit a25f8be.
  • Loading branch information
suprjinx committed Jun 25, 2024
1 parent 23edf39 commit 3c9b2cc
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/src/routes/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ const Bookmarks = React.lazy(
const Dashboard = React.lazy(
() => import(/* webpackChunkName: "dashboard" */ 'pages/Dashboard/Dashboard'),
);
// const TagsContainer = React.lazy(
// () => import(/* webpackChunkName: "tags" */ 'pages/Tags/TagsContainer'),
// );
const TagsContainer = React.lazy(
() => import(/* webpackChunkName: "tags" */ 'pages/Tags/TagsContainer'),
);
const Scatters = React.lazy(
() =>
import(
Expand Down Expand Up @@ -192,15 +192,15 @@ const routes = {
isExact: true,
title: pageTitlesEnum.BOOKMARKS,
},
// TAGS: {
// path: PathEnum.Tags,
// component: TagsContainer,
// showInSidebar: true,
// displayName: 'Tags',
// icon: 'tags',
// isExact: true,
// title: pageTitlesEnum.TAGS,
// },
TAGS: {
path: PathEnum.Tags,
component: TagsContainer,
showInSidebar: true,
displayName: 'Tags',
icon: 'tags',
isExact: true,
title: pageTitlesEnum.TAGS,
},
RUN_DETAIL: {
path: PathEnum.Run_Detail,
component: RunDetail,
Expand Down

0 comments on commit 3c9b2cc

Please sign in to comment.