fix: redirect to root after login
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s

This commit is contained in:
2026-03-22 01:23:27 -05:00
parent eb94a1bcb9
commit 1b32456173

View File

@@ -23,7 +23,7 @@ async function login(): Promise<void> {
const success: boolean = await authApi.login(user); const success: boolean = await authApi.login(user);
if(success) { if(success) {
router.push("/users"); // redirect router.push(""); // redirect
} else { } else {
// prompt try again // prompt try again
} }