remove console.logs

This commit is contained in:
hay-kot 2021-02-19 18:15:43 -09:00
commit 5a373f38fa
2 changed files with 0 additions and 2 deletions

View file

@ -33,7 +33,6 @@ export default {
colors: colors,
};
let response = await apiReq.put(settingsURLs.updateTheme(themeName), body);
console.log(response.data);
return response.data;
},

View file

@ -120,7 +120,6 @@ export default {
},
async mounted() {
let settings = await api.settings.requestAll();
console.log(settings);
this.items = await api.recipes.getAllByCategory(settings.planCategories);
},