remove console.logs

This commit is contained in:
hay-kot 2021-03-31 18:53:01 -08:00
commit c6eaf5ba4c
7 changed files with 0 additions and 12 deletions

View file

@ -21,7 +21,6 @@ export const metaAPI = {
async getIsDemo() {
let response = await apiReq.get(debugURLs.demo);
console.log(response);
return response.data;
},
};

View file

@ -273,7 +273,6 @@ export default {
await this.initialize();
},
resetPassword() {
console.log(this.activeId);
api.users.resetPassword(this.editedItem.id);
},
},

View file

@ -125,7 +125,6 @@ export default {
computed: {
groupSettings() {
console.log(this.$store.getters.getCurrentGroup);
return this.$store.getters.getCurrentGroup;
},
actualStartDate() {

View file

@ -99,11 +99,6 @@ export default {
default: 999,
},
},
watch: {
recipes() {
console.log(this.recipes);
},
},
computed: {
viewScale() {
switch (this.$vuetify.breakpoint.name) {

View file

@ -154,7 +154,6 @@ export default {
return utils.getImageURL(image);
},
selected(slug, name) {
console.log("Selected", slug, name);
this.$emit("selected", slug, name);
},
async onFocus() {

View file

@ -36,7 +36,6 @@ export default {
},
computed: {
siteSettings() {
console.log(this.$store.getters.getSiteSettings);
return this.$store.getters.getSiteSettings;
},
recentRecipes() {
@ -54,7 +53,6 @@ export default {
this.siteSettings.categories.forEach(async element => {
let recipes = await this.getRecipeByCategory(element.slug);
if (recipes.recipes.length < 0) recipes.recipes = [];
console.log(recipes);
this.recipeByCategory.push(recipes);
});
},

View file

@ -43,7 +43,6 @@ export default {
methods: {
async getRecipes() {
let data = await api.tags.getRecipesInTag(this.currentTag);
console.log(data);
this.title = data.name;
this.recipes = data.recipes;
},