base path for react router fix

This commit is contained in:
michael 2025-10-08 16:55:02 -05:00
parent aafc4078ae
commit 1dae163cad

View file

@ -37,9 +37,9 @@ function AuthenticatedRoute({ children }: { children: React.ReactNode }) {
function AppContent() {
const { toasts, removeToast } = useToastContext();
return (
<Router>
<Router basename="/video-accessibility">
<div className="min-h-screen bg-gray-50">
<Routes>
<Route path="/login" element={<Login />} />