Remove frontend console debug logs

This commit is contained in:
Kevin Thomas
2021-11-12 21:55:26 -08:00
parent a441698999
commit eb3c00d6c1
5 changed files with 12 additions and 52 deletions

View File

@@ -25,10 +25,11 @@ export default {
})
.catch((error) => {
if (error.response.status === 401) {
this.snackbar = true
this.snackbarText = 'Login Failed: Unauthorized'
} else {
this.snackbarText = 'Login Failed'
}
console.error(error.response)
this.snackbar = true
})
}
}