Fixed auth page stuck on submitted on error.

This commit is contained in:
DebaucheryLibrarian 2026-01-26 02:44:31 +01:00
parent f7016609a0
commit 6b6e31a1bb
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ async function login() {
} catch (error) {
errorMsg.value = error.message;
} finally {
submitted.value = true;
submitted.value = false;
}
}

View File

@ -181,7 +181,7 @@ async function signup() {
} catch (error) {
errorMsg.value = error.message;
} finally {
submitted.value = true;
submitted.value = false;
}
}