Withdrew the console.log entries.

This commit is contained in:
Hannes Heine 2021-08-10 15:16:35 +02:00
parent 0765b80144
commit dc256719c1

View File

@ -126,7 +126,6 @@ export default {
},
})
.then(() => {
console.log('THEN:')
this.$store.commit('firstName', this.form.firstName)
this.$store.commit('lastName', this.form.lastName)
this.$store.commit('description', this.form.description)
@ -134,7 +133,6 @@ export default {
this.$toasted.success(this.$t('site.profil.user-data.change-success'))
})
.catch((error) => {
console.log('ERROR:', error.message)
this.$toasted.error(error.message)
})
},