Skip to content

Commit

Permalink
feat: email message limit not showing fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mythter committed Sep 2, 2024
1 parent 85a9a23 commit 9ec74db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ContactForm = forwardRef((customClass: Props, ref) => {
successMessage();
})
.catch((error) => {
if (error === 429) {
if (error.status === 429) {
errorMessage(MESSAGE_LIMIT);
}
else {
Expand Down

0 comments on commit 9ec74db

Please sign in to comment.