Cleanup Debugging Stuff

This commit is contained in:
Annika Merris 2024-03-02 20:59:00 -05:00
parent e6b3f4142f
commit a8e7e18bf9

View file

@ -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) => {