Skip to content

Commit

Permalink
chore: revert auth back to start mapping page
Browse files Browse the repository at this point in the history
  • Loading branch information
jeafreezy committed Dec 30, 2024
1 parent 72d45a2 commit 28ae3bc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/src/app/router.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { APPLICATION_ROUTES } from "@/constants";
import { MainErrorFallback } from "@/components/errors";
import { ModelFormsLayout, RootLayout } from "@/layouts";
import { ProtectedRoute } from "@/app/routes/protected-route";
import { APPLICATION_ROUTES } from '@/constants';
import { MainErrorFallback } from '@/components/errors';
import { ModelFormsLayout, RootLayout } from '@/layouts';
import { ProtectedRoute } from '@/app/routes/protected-route';
import {
Navigate,
RouterProvider,
Expand Down Expand Up @@ -277,9 +277,9 @@ const router = createBrowserRouter([
);
return {
Component: () => (
// <ProtectedRoute>
<StartMappingPage />
// </ProtectedRoute>
<ProtectedRoute>
<StartMappingPage />
</ProtectedRoute>
),
};
},
Expand Down

0 comments on commit 28ae3bc

Please sign in to comment.