🚨 Fix lint warn, by removing console.log

This commit is contained in:
Alicia Sykes 2024-04-08 20:37:09 +01:00
parent 18e2338735
commit 31b40e60f6
1 changed files with 1 additions and 3 deletions

View File

@ -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()