From c608b82ae0203ca8fb8fc6b1b6eb4692ec9ef220 Mon Sep 17 00:00:00 2001 From: Deepansh Mathur Date: Sat, 11 May 2024 21:32:40 +0530 Subject: [PATCH] some console log statements removed --- src/router/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 7c6707de..a83bd51e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -172,7 +172,6 @@ router.beforeEach((to, from) => { // are not explicitly specified in the requested URL. This will lead them to the workspace's home // where they left off the in the previous session const existingActiveWorkspace = store.state["auth"]["activeWorkspace"]; - console.log(existingActiveWorkspace, to.params.workspace); if ( existingActiveWorkspace != "" && ( to.params.workspace == undefined || @@ -248,7 +247,6 @@ router.beforeEach((to, from) => { // set workspace in vuex state if the route workspace parameter is in vuex user organizations array router.beforeEach((to) => { if (store.getters["auth/isAuthenticated"]) { - console.log(to.params.workspace); if (to.params.workspace != "" && to.params.workspace != undefined) store.dispatch("auth/setActiveWorkspace", to.params.workspace); else store.dispatch("auth/unsetActiveWorkspace");