Skip to content

Commit f462af4

Browse files
committed
vfixes typo
1 parent f245224 commit f462af4

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

v2/emailpassword/custom-ui/email-password-login.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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).

v2/emailpassword/custom-ui/forgot-password.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function sendEmailClicked(email: string) {
4545
});
4646

4747
if (response.status === "FIELD_ERROR") {
48-
// one of the input formFields failed validaiton
48+
// one of the input formFields failed validation
4949
response.formFields.forEach(formField => {
5050
if (formField.id === "email") {
5151
// Email validation failed (for example incorrect email syntax).
@@ -84,7 +84,7 @@ async function signUpClicked(email: string) {
8484
});
8585

8686
if (response.status === "FIELD_ERROR") {
87-
// one of the input formFields failed validaiton
87+
// one of the input formFields failed validation
8888
response.formFields.forEach(formField => {
8989
if (formField.id === "email") {
9090
// Email validation failed (for example incorrect email syntax).

v2/thirdpartyemailpassword/custom-ui/email-password-login.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function signUpClicked(email: string, password: string) {
4444
})
4545

4646
if (response.status === "FIELD_ERROR") {
47-
// one of the input formFields failed validaiton
47+
// one of the input formFields failed validation
4848
response.formFields.forEach(formField => {
4949
if (formField.id === "email") {
5050
// Email validation failed (for example incorrect email syntax),
@@ -95,7 +95,7 @@ async function signUpClicked(email: string, password: string) {
9595
})
9696

9797
if (response.status === "FIELD_ERROR") {
98-
// one of the input formFields failed validaiton
98+
// one of the input formFields failed validation
9999
response.formFields.forEach(formField => {
100100
if (formField.id === "email") {
101101
// Email validation failed (for example incorrect email syntax),
@@ -346,7 +346,7 @@ async function signInClicked(email: string, password: string) {
346346
})
347347

348348
if (response.status === "FIELD_ERROR") {
349-
// one of the input formFields failed validaiton
349+
// one of the input formFields failed validation
350350
response.formFields.forEach(formField => {
351351
if (formField.id === "email") {
352352
// Email validation failed (for example incorrect email syntax).

v2/thirdpartyemailpassword/custom-ui/forgot-password.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function sendEmailClicked(email: string) {
4545
});
4646

4747
if (response.status === "FIELD_ERROR") {
48-
// one of the input formFields failed validaiton
48+
// one of the input formFields failed validation
4949
response.formFields.forEach(formField => {
5050
if (formField.id === "email") {
5151
// Email validation failed (for example incorrect email syntax).
@@ -84,7 +84,7 @@ async function signUpClicked(email: string) {
8484
});
8585

8686
if (response.status === "FIELD_ERROR") {
87-
// one of the input formFields failed validaiton
87+
// one of the input formFields failed validation
8888
response.formFields.forEach(formField => {
8989
if (formField.id === "email") {
9090
// Email validation failed (for example incorrect email syntax).

0 commit comments

Comments
 (0)