auth: remove console.log

This commit is contained in:
Chris Sexton 2020-03-16 18:36:06 -04:00
parent 191dbfa23a
commit a1d39c3930
1 changed files with 0 additions and 3 deletions

View File

@ -49,9 +49,6 @@
onSubmit(evt) { onSubmit(evt) {
evt.preventDefault() evt.preventDefault()
this.$store.dispatch('login', {username: this.form.username, password: this.form.password}) this.$store.dispatch('login', {username: this.form.username, password: this.form.password})
.catch((err) => {
console.log(err)
})
.then(() => { .then(() => {
this.$cookies.set('key', this.$store.state.key) this.$cookies.set('key', this.$store.state.key)
if (!this.$route.params.returnTo) if (!this.$route.params.returnTo)