1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-03 20:45:23 +02:00

Removed console Log statements

This commit is contained in:
zackbcom 2021-01-07 23:16:55 -06:00
parent 570dcbaf17
commit b72227e5df
3 changed files with 9 additions and 13 deletions

View file

@ -177,7 +177,6 @@ export default {
//Get the new list of available from DB
this.availableThemes = await api.themes.requestAll();
console.log("themes", this.availableThemes);
//Change to default if deleting current theme.
if (
@ -185,7 +184,6 @@ export default {
theme => theme.name === this.selectedTheme.name
)
) {
console.log("hit");
await this.$store.dispatch("resetTheme");
this.selectedTheme = this.$store.getters.getActiveTheme;
}