Skip to content

Commit

Permalink
vfixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Jul 30, 2024
1 parent f245224 commit f462af4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions v2/emailpassword/custom-ui/email-password-login.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function signUpClicked(email: string, password: string) {
})

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax),
Expand Down Expand Up @@ -92,7 +92,7 @@ async function signUpClicked(email: string, password: string) {
})

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax),
Expand Down Expand Up @@ -343,7 +343,7 @@ async function signInClicked(email: string, password: string) {
})

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax).
Expand Down
4 changes: 2 additions & 2 deletions v2/emailpassword/custom-ui/forgot-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function sendEmailClicked(email: string) {
});

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

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax).
Expand Down
6 changes: 3 additions & 3 deletions v2/thirdpartyemailpassword/custom-ui/email-password-login.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function signUpClicked(email: string, password: string) {
})

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

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

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax).
Expand Down
4 changes: 2 additions & 2 deletions v2/thirdpartyemailpassword/custom-ui/forgot-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function sendEmailClicked(email: string) {
});

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

if (response.status === "FIELD_ERROR") {
// one of the input formFields failed validaiton
// one of the input formFields failed validation
response.formFields.forEach(formField => {
if (formField.id === "email") {
// Email validation failed (for example incorrect email syntax).
Expand Down

0 comments on commit f462af4

Please sign in to comment.