diff --git a/packages/web/src/components/Layout/index.tsx b/packages/web/src/components/Layout/index.tsx index c4f0cb8f..43fb2500 100644 --- a/packages/web/src/components/Layout/index.tsx +++ b/packages/web/src/components/Layout/index.tsx @@ -6,7 +6,6 @@ import useMediaQuery from '@mui/material/useMediaQuery'; import AppsIcon from '@mui/icons-material/Apps'; import SwapCallsIcon from '@mui/icons-material/SwapCalls'; import HistoryIcon from '@mui/icons-material/History'; -import ExploreIcon from '@mui/icons-material/Explore'; import NotificationsIcon from '@mui/icons-material/Notifications'; import * as URLS from 'config/urls'; @@ -33,11 +32,6 @@ const drawerLinks = [ primary: 'drawer.executions', to: URLS.EXECUTIONS, }, - { - Icon: ExploreIcon, - primary: 'drawer.explore', - to: URLS.EXPLORE, - }, ]; const drawerBottomLinks = [ diff --git a/packages/web/src/config/urls.ts b/packages/web/src/config/urls.ts index 81da6409..306b4db5 100644 --- a/packages/web/src/config/urls.ts +++ b/packages/web/src/config/urls.ts @@ -1,5 +1,4 @@ export const CONNECTIONS = '/connections'; -export const EXPLORE = '/explore'; export const EXECUTIONS = '/executions'; export const EXECUTION_PATTERN = '/executions/:executionId'; export const EXECUTION = (executionId: string): string => `/executions/${executionId}`; diff --git a/packages/web/src/pages/Explore/index.tsx b/packages/web/src/pages/Explore/index.tsx deleted file mode 100644 index b1ab9f37..00000000 --- a/packages/web/src/pages/Explore/index.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import * as React from 'react'; -import Box from '@mui/material/Box'; -import Container from 'components/Container'; - -export default function Explore(): React.ReactElement { - return ( - - - Explore - - - ); -}; diff --git a/packages/web/src/routes.tsx b/packages/web/src/routes.tsx index e4d76522..4a311b68 100644 --- a/packages/web/src/routes.tsx +++ b/packages/web/src/routes.tsx @@ -7,7 +7,6 @@ import Executions from 'pages/Executions'; import Execution from 'pages/Execution'; import Flows from 'pages/Flows'; import Flow from 'pages/Flow'; -import Explore from 'pages/Explore'; import Login from 'pages/Login'; import EditorRoutes from 'pages/Editor/routes'; import * as URLS from 'config/urls'; @@ -27,8 +26,6 @@ export default ( } /> - } /> - } /> } />