feat: remove explore page
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
4173e3bd2a
commit
45f810b5b8
@@ -6,7 +6,6 @@ import useMediaQuery from '@mui/material/useMediaQuery';
|
|||||||
import AppsIcon from '@mui/icons-material/Apps';
|
import AppsIcon from '@mui/icons-material/Apps';
|
||||||
import SwapCallsIcon from '@mui/icons-material/SwapCalls';
|
import SwapCallsIcon from '@mui/icons-material/SwapCalls';
|
||||||
import HistoryIcon from '@mui/icons-material/History';
|
import HistoryIcon from '@mui/icons-material/History';
|
||||||
import ExploreIcon from '@mui/icons-material/Explore';
|
|
||||||
import NotificationsIcon from '@mui/icons-material/Notifications';
|
import NotificationsIcon from '@mui/icons-material/Notifications';
|
||||||
|
|
||||||
import * as URLS from 'config/urls';
|
import * as URLS from 'config/urls';
|
||||||
@@ -33,11 +32,6 @@ const drawerLinks = [
|
|||||||
primary: 'drawer.executions',
|
primary: 'drawer.executions',
|
||||||
to: URLS.EXECUTIONS,
|
to: URLS.EXECUTIONS,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
Icon: ExploreIcon,
|
|
||||||
primary: 'drawer.explore',
|
|
||||||
to: URLS.EXPLORE,
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const drawerBottomLinks = [
|
const drawerBottomLinks = [
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
export const CONNECTIONS = '/connections';
|
export const CONNECTIONS = '/connections';
|
||||||
export const EXPLORE = '/explore';
|
|
||||||
export const EXECUTIONS = '/executions';
|
export const EXECUTIONS = '/executions';
|
||||||
export const EXECUTION_PATTERN = '/executions/:executionId';
|
export const EXECUTION_PATTERN = '/executions/:executionId';
|
||||||
export const EXECUTION = (executionId: string): string => `/executions/${executionId}`;
|
export const EXECUTION = (executionId: string): string => `/executions/${executionId}`;
|
||||||
|
@@ -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>
|
|
||||||
);
|
|
||||||
};
|
|
@@ -7,7 +7,6 @@ import Executions from 'pages/Executions';
|
|||||||
import Execution from 'pages/Execution';
|
import Execution from 'pages/Execution';
|
||||||
import Flows from 'pages/Flows';
|
import Flows from 'pages/Flows';
|
||||||
import Flow from 'pages/Flow';
|
import Flow from 'pages/Flow';
|
||||||
import Explore from 'pages/Explore';
|
|
||||||
import Login from 'pages/Login';
|
import Login from 'pages/Login';
|
||||||
import EditorRoutes from 'pages/Editor/routes';
|
import EditorRoutes from 'pages/Editor/routes';
|
||||||
import * as URLS from 'config/urls';
|
import * as URLS from 'config/urls';
|
||||||
@@ -27,8 +26,6 @@ export default (
|
|||||||
|
|
||||||
<Route path={`${URLS.APPS}/*`} element={<Layout><Applications /></Layout>} />
|
<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.APP_PATTERN}/*`} element={<Layout><Application /></Layout>} />
|
||||||
|
|
||||||
<Route path={`${URLS.EDITOR}/*`} element={<EditorRoutes />} />
|
<Route path={`${URLS.EDITOR}/*`} element={<EditorRoutes />} />
|
||||||
|
Reference in New Issue
Block a user