Skip to content

Commit

Permalink
fix(web): correct error display in login
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Aug 26, 2023
1 parent bda7ea4 commit b21e88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/apps/web/src/pages/auth/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const Login: React.FC = () => {
setSubmitting(false);
})
.catch((err) => {
toast.error(err);
toast.error(err.message);
setSubmitting(false);
});
};
Expand Down

0 comments on commit b21e88d

Please sign in to comment.