Update all indentation from tabs to spaces

It seems there were a few stray tabs that used to be there earlier
but since we're now using spaces, we've got rid of all the tabs
permanently.
This commit is contained in:
Badri Sunderarajan 2022-08-05 10:56:03 +05:30 committed by Badri
parent 9f2c248e41
commit 38b1aff162
5 changed files with 116 additions and 116 deletions

View file

@ -29,7 +29,7 @@
} }
// Validate email formatting // Validate email formatting
if (!EmailValidator.validate(email)) { if (email && !EmailValidator.validate(email)) {
errors.push(`"${email}" is not a valid email address`) errors.push(`"${email}" is not a valid email address`)
} }