fix: trim/lowercase email on email change (#2886)

This commit is contained in:
Mo
2024-09-20 09:53:02 -05:00
committed by GitHub
parent ed0d98ae85
commit 98304cc57d
5 changed files with 61 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
export const cleanedEmailString = (email: string) => {
return email.trim().toLowerCase()
}