remove console.log entries

This commit is contained in:
sadnub 2021-03-29 18:33:06 -04:00
parent 382654188c
commit 9af5c9ead9
3 changed files with 1 additions and 4 deletions

View File

@ -251,8 +251,7 @@ export default {
this.notifySuccess("Agent was edited!");
})
.catch(e => {
this.notifyError("Something went wrong")
console.log({e})
this.notifyError("Something went wrong");
});
},
},

View File

@ -110,7 +110,6 @@ export default {
custom_fields: this.formatCustomFields(this.customFields, this.custom_fields),
};
console.log(data);
this.$axios
.put(`/clients/${this.client.id}/client/`, data)
.then(r => {

View File

@ -235,7 +235,6 @@ export default {
})
.catch(e => {
this.$q.loading.hide();
console.log({ e });
this.notifyError("There was an error adding the custom field");
});
}