From a8e7e18bf919de87d2a0e72f252a2d7a35a89678 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sat, 2 Mar 2024 20:59:00 -0500 Subject: [PATCH] Cleanup Debugging Stuff --- src/stores/powerItems.ts | 10 ---------- 1 file changed, 10 deletions(-) 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) => {