Skip to content

Commit

Permalink
retained the "email is required" message Footer.jsx
Browse files Browse the repository at this point in the history
retained the "email is required" message in the email form.
  • Loading branch information
adi-exe authored Jan 31, 2024
1 parent 3f64f02 commit f96692f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const Footer = (props) => {
isValid = false;
}
if (!email.trim()) {
emailErr.emailRequired = "";
emailErr.emailRequired = "* Email is required";
isValid = false;
}
setEmailErr(emailErr);
Expand Down

0 comments on commit f96692f

Please sign in to comment.