Redirect to signin on session failure

This commit is contained in:
Eli Ribble 2026-04-16 17:30:54 +00:00
parent d047c460ed
commit 7483a6a695
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -18,6 +18,7 @@ onMounted(() => {
})
.catch((e) => {
console.log("root session not loaded", e);
router.push("/signin");
});
console.log("home mounted");
});

View file

@ -17,6 +17,7 @@ onMounted(() => {
})
.catch((e) => {
console.log("root session not loaded", e);
router.push("/signin");
});
console.log("home mounted");
});