fixing router

This commit is contained in:
Warunee Tamkoo 2024-09-09 13:19:57 +07:00
parent d03e3b9e98
commit 48d144e5e1

View file

@ -87,8 +87,6 @@ router.beforeEach(async (to, from, next) => {
if (!checkAuthen && to.meta.Auth) {
router.push({ name: "loginMain" });
}
} else {
next();
}
next();
});