Immediately mark session authenticated on successful signin

This commit is contained in:
Eli Ribble 2026-04-28 14:37:33 +00:00
parent 878b43c0a6
commit 6e3d079c46
No known key found for this signature in database

View file

@ -54,6 +54,7 @@ export const useSessionStore = defineStore("session", () => {
password: password,
username: username,
});
isAuthenticated.value = false;
return {
is_success: true,
status: 200,