From 31b40e60f6c62cdc1b5a2b3a7ddf0989a8cdd2cc Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Mon, 8 Apr 2024 20:37:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Fix=20lint=20warn,=20by=20removi?= =?UTF-8?q?ng=20console.log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.js b/src/main.js index cd7a0df3..65f54a18 100644 --- a/src/main.js +++ b/src/main.js @@ -60,9 +60,7 @@ const mount = () => new Vue({ store, router, render, i18n, }).$mount('#app'); -store.dispatch(Keys.INITIALIZE_CONFIG).then((thing) => { - console.log('main', thing); - +store.dispatch(Keys.INITIALIZE_CONFIG).then(() => { // Keycloak is enabled, redirect to KC login page if (isKeycloakEnabled()) { initKeycloakAuth()