Skip to content

Commit

Permalink
fix: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dati18 committed Feb 2, 2025
1 parent a36eab2 commit 2dbd5bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Cards/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ export default {
.catch(err => {
console.log(err.response)
this.errorMessage = "Incorrect username or password. Please try again."
this.errorMessage = 'Incorrect username or password. Please try again.'
this.password = ""
this.password = ''
this.$nextTick(() => {
this.$refs.passwordField.$el.querySelector("input").focus();
});
this.$refs.passwordField.$el.querySelector('input').focus()
})
this.loggingIn = false
})
Expand Down

0 comments on commit 2dbd5bb

Please sign in to comment.