From 1eb001e417aaa9c4297dccfaffbd686551e8c76d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 21:33:24 +0000 Subject: [PATCH] Redirect /profile to /dashboard and adjust header nav links cgen-22e4b41b4e484d14a95d047c92359474 --- client/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/App.tsx b/client/App.tsx index fe9eb650..a97365bd 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -33,6 +33,7 @@ import GetStarted from "./pages/GetStarted"; import Privacy from "./pages/Privacy"; import Terms from "./pages/Terms"; import Admin from "./pages/Admin"; +import { Navigate } from "react-router-dom"; import NotFound from "./pages/NotFound"; const queryClient = new QueryClient(); @@ -49,7 +50,7 @@ const App = () => ( } /> } /> } /> - } /> + } /> } /> {/* Service routes */}