From a87a257e8f9d9de096daa06e47f39352f37f26b1 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 26 May 2024 09:59:11 -0500 Subject: [PATCH] redirect non existent paths to live view --- web/src/App.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index c4bdab9f25..24ec6d84d1 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -20,7 +20,6 @@ const System = lazy(() => import("@/pages/System")); const Settings = lazy(() => import("@/pages/Settings")); const UIPlayground = lazy(() => import("@/pages/UIPlayground")); const Logs = lazy(() => import("@/pages/Logs")); -const NoMatch = lazy(() => import("@/pages/NoMatch")); function App() { return ( @@ -52,7 +51,7 @@ function App() { } /> } /> } /> - } /> + } />