diff --git a/app/src/App.tsx b/app/src/App.tsx index 93a1cf4eb..2fd3dfb78 100644 --- a/app/src/App.tsx +++ b/app/src/App.tsx @@ -23,7 +23,6 @@ import {BrowserRouter as Router, Route, Routes} from 'react-router-dom'; import './App.css'; import * as ROUTES from './constants/routes'; import {PrivateRoute} from './constants/privateRouter'; -import Index from './gui/pages'; import {SignIn} from './gui/pages/signin'; import AboutBuild from './gui/pages/about-build'; import Workspace from './gui/pages/workspace'; @@ -85,7 +84,7 @@ export default function App() { } /> @@ -182,15 +181,6 @@ export default function App() { } /> - - - - } - /> - diff --git a/app/src/constants/routes.tsx b/app/src/constants/routes.tsx index c6e01a0bf..d4ee1c53c 100644 --- a/app/src/constants/routes.tsx +++ b/app/src/constants/routes.tsx @@ -25,7 +25,6 @@ export const INDEX = '/'; export const SIGN_IN = '/signin/'; export const NOT_FOUND = '/not-found'; -export const WORKSPACE = '/workspace'; export const INDIVIDUAL_NOTEBOOK_ROUTE = `/${NOTEBOOK_NAME}s/`; export const NOTEBOOK_LIST_ROUTE = `/${NOTEBOOK_NAME}s`; diff --git a/app/src/gui/components/authentication/appbarAuth.tsx b/app/src/gui/components/authentication/appbarAuth.tsx index ca1a3bfdd..6904e72c2 100644 --- a/app/src/gui/components/authentication/appbarAuth.tsx +++ b/app/src/gui/components/authentication/appbarAuth.tsx @@ -87,7 +87,7 @@ export default function AppBarAuth(props: AppBarAuthProps) { open={Boolean(anchorEl)} onClose={handleClose} > - handleRoutingAndClose(ROUTES.WORKSPACE)}> + handleRoutingAndClose(ROUTES.INDEX)}> diff --git a/app/src/gui/components/authentication/cluster_card.tsx b/app/src/gui/components/authentication/cluster_card.tsx index faf2c7fee..61415829a 100644 --- a/app/src/gui/components/authentication/cluster_card.tsx +++ b/app/src/gui/components/authentication/cluster_card.tsx @@ -215,7 +215,7 @@ export default function ClusterCard(props: ClusterCardProps) {