@@ -41,7 +41,7 @@ async function signUpClicked(email: string, password: string) {
4141 })
4242
4343 if (response .status === " FIELD_ERROR" ) {
44- // one of the input formFields failed validaiton
44+ // one of the input formFields failed validation
4545 response .formFields .forEach (formField => {
4646 if (formField .id === " email" ) {
4747 // Email validation failed (for example incorrect email syntax),
@@ -92,7 +92,7 @@ async function signUpClicked(email: string, password: string) {
9292 })
9393
9494 if (response .status === " FIELD_ERROR" ) {
95- // one of the input formFields failed validaiton
95+ // one of the input formFields failed validation
9696 response .formFields .forEach (formField => {
9797 if (formField .id === " email" ) {
9898 // Email validation failed (for example incorrect email syntax),
@@ -343,7 +343,7 @@ async function signInClicked(email: string, password: string) {
343343 })
344344
345345 if (response .status === " FIELD_ERROR" ) {
346- // one of the input formFields failed validaiton
346+ // one of the input formFields failed validation
347347 response .formFields .forEach (formField => {
348348 if (formField .id === " email" ) {
349349 // Email validation failed (for example incorrect email syntax).
0 commit comments