Skip to content

Commit

Permalink
feat(sign in): better errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Jan 17, 2024
1 parent 6ec13e0 commit a70c238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/premium/sign-in.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
} catch (error) {
if (error instanceof FetchError) {
if (error.status === 401) {
toast.error('Invalid license key, check it and try again')
toast.error('Invalid license key: ' + error.data.message)
return
}
}
Expand Down

0 comments on commit a70c238

Please sign in to comment.