feat: remove explore page

This commit is contained in:
Ali BARIN
2022-04-02 11:35:38 +02:00
committed by Ömer Faruk Aydın
parent 4173e3bd2a
commit 45f810b5b8
4 changed files with 0 additions and 23 deletions

View File

@@ -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 = [

View File

@@ -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}`;

View File

@@ -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 (
<Box sx={{ py: 3 }}>
<Container>
Explore
</Container>
</Box>
);
};

View File

@@ -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 (
<Route path={`${URLS.APPS}/*`} element={<Layout><Applications /></Layout>} />
<Route path={URLS.EXPLORE} element={<Layout><Explore /></Layout>} />
<Route path={`${URLS.APP_PATTERN}/*`} element={<Layout><Application /></Layout>} />
<Route path={`${URLS.EDITOR}/*`} element={<EditorRoutes />} />