diff --git a/src/stores/powerItems.ts b/src/stores/powerItems.ts index b9e2c3d..d2c25c1 100644 --- a/src/stores/powerItems.ts +++ b/src/stores/powerItems.ts @@ -34,7 +34,6 @@ export const usePowerItems = defineStore('powerItems', () => { } }) } - console.log(apiBaseURL) //#endregion //#region state @@ -50,15 +49,6 @@ export const usePowerItems = defineStore('powerItems', () => { //#region loaders async function fetchBlessingItems() { - getConfig().then((conf: Config | null) => { - if (conf !== null) { - console.log(conf) - apiBaseURL = conf.apiBaseURL - return conf - } - throw new Error("Could not fetch config") - }) - console.log("get: " + apiBaseURL) axios .get(apiBaseURL + '/powerItems/byType/' + BLESSING + '/asMap', noCacheConfig) .then((resp) => {