Skip to content

Commit 12a8d9a

Browse files
committed
Fix routing conflict: remove index from login route
1 parent 948e010 commit 12a8d9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default function App() {
122122
{/* Auth */}
123123
<Route element={<AuthLayout />}>
124124
{/* Login */}
125-
<Route index path="login" element={<LoginPage />} />
125+
<Route path="login" element={<LoginPage />} />
126126

127127
{/* Register */}
128128
<Route path="register">

0 commit comments

Comments
 (0)