@@ -476,6 +476,9 @@ router.beforeEach((to, from, next) => {
store
.dispatch('checkOrganization')
.then(() => {
+ if (to.path === '/dashboard' && store.state.isORGANIZER) {
+ next('/organizationInfo');
+ }
next();
})
.catch(() => {