diff --git a/client/src/layouts/default/AppBar.vue b/client/src/layouts/default/AppBar.vue index 6769345..ea0a3df 100644 --- a/client/src/layouts/default/AppBar.vue +++ b/client/src/layouts/default/AppBar.vue @@ -116,7 +116,7 @@ export default { "/otp", "/newPassword", "/maintenance", - // "/nextlaunch", + "/nextlaunch", "/about" ]); const items = ref([ diff --git a/client/src/router/index.js b/client/src/router/index.js index eeba631..1c5c8d9 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -195,6 +195,7 @@ router.beforeEach(async (to, from, next) => { next(); } else { await userService.nextlaunch(); + await userService.handleNextLaunch(); next(); } });