Skip to content

Commit

Permalink
fix(recover): fix generic error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Apr 25, 2024
1 parent 7eb87fb commit a66deee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RecoverAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default defineComponent({
.catch((error) => {
const errorMsg = this.$te(`authView.authErrors.${error.code}`)
? this.$t(`authView.authErrors.${error.code}`)
: this.$t(`authView.genericError`)
: this.$t(`authView.authErrors.genericError`)
this.showSnackbar(errorMsg, 'error')
})
}
Expand Down

0 comments on commit a66deee

Please sign in to comment.