From 74eae2707376b9adf071f409ffdabc65a6985ac8 Mon Sep 17 00:00:00 2001 From: Shugaba Wuta <57352948+Shugaba-Wuta@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:11:41 +0100 Subject: [PATCH] feat removed tags page from ui-aim (#59) --- src/src/routes/routes.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/src/routes/routes.tsx b/src/src/routes/routes.tsx index ac46be9a..514eefee 100644 --- a/src/src/routes/routes.tsx +++ b/src/src/routes/routes.tsx @@ -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( @@ -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,