Skip to content

Commit

Permalink
Edit: formatting suggestion by linter/formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sazk07 authored Dec 30, 2024
1 parent e83fc6c commit c6144ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ const emailRegExp =
/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;

// Check if the email is valid
const isValidEmail = () => {
const isValidEmail = () => {
const validity = email.value.length !== 0 && emailRegExp.test(email.value);
return validity;
};
Expand Down

0 comments on commit c6144ce

Please sign in to comment.