We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3842002 commit bfbaf1aCopy full SHA for bfbaf1a
src/router.tsx
@@ -30,8 +30,8 @@ import NotFound from './pages/NotFound.tsx'
30
const router = createBrowserRouter(
31
createRoutesFromElements(
32
<>
33
- <Route path="confirmations/:token" element={<Confirmation />} />
34
- <Route path="password_resets/:token" element={<PasswordResets />} />
+ <Route path="auth/confirmations/:token" element={<Confirmation />} />
+ <Route path="auth/password_resets/:token" element={<PasswordResets />} />
35
<Route path="/" element={<Home />} errorElement={<ErrorPage />}>
36
<Route errorElement={<ErrorPage />}>
37
<Route index element={<LandingPage />} />
0 commit comments