input slug

This commit is contained in:
hamid zarghami
2025-11-19 09:06:17 +03:30
parent 6cc718891d
commit e9e66f129e
6 changed files with 39 additions and 10 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import Login from '../pages/auth/Login'
const Auth: FC = () => {
return (
<Routes>
<Route path={Pages.auth.login + '/:slug'} element={<Login />} />
<Route path={Pages.auth.login} element={<Login />} />
</Routes>
)
}