feat: alle functionaliteiten van de user homepage zijn geïmplementeerd

This commit is contained in:
Joyelle Ndagijimana 2025-03-21 16:32:12 +01:00
parent 54a2cf0800
commit 0d635fc6a1
6 changed files with 26 additions and 15 deletions

View file

@ -119,7 +119,7 @@ router.beforeEach(async (to, from, next) => {
// Verify if user is logged in before accessing certain routes
if (to.meta.requiresAuth) {
if (!authState.isLoggedIn.value) {
//next("/login");
//Next("/login");
next();
} else {
next();