From 5430efd89b8a02bb28e51c1257914441033cd325 Mon Sep 17 00:00:00 2001 From: Matthew Rowland Date: Sun, 24 Sep 2023 11:48:43 -0700 Subject: [PATCH] Remove fallbackElement since it didn't work; hope for the best --- frontend/src/Routes.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/frontend/src/Routes.tsx b/frontend/src/Routes.tsx index 7f44bbb14..4778161f2 100644 --- a/frontend/src/Routes.tsx +++ b/frontend/src/Routes.tsx @@ -4,7 +4,6 @@ import Catalog from './app/Catalog'; import Landing from './views/Landing'; import Error from './views/Error'; import Layout from 'components/Common/Layout'; -import BTLoader from 'components/Common/BTLoader'; const Grades = () => import('./app/Grades'); const Enrollment = () => import('./app/Enrollment'); @@ -65,14 +64,5 @@ const router = createBrowserRouter([ ]); export default function Routes() { - return ( - - - - } - /> - ); + return ; }