Skip to content

Commit

Permalink
more corrections to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed May 17, 2024
1 parent 1117413 commit 107a04c
Show file tree
Hide file tree
Showing 5 changed files with 120 additions and 18 deletions.
30 changes: 24 additions & 6 deletions v2/emailpassword/common-customizations/embed-sign-in-up-form.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -322,7 +325,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -397,7 +403,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -486,7 +495,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -572,7 +584,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -660,7 +675,10 @@ SuperTokens.init({
},
recipeList: [
EmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down
24 changes: 24 additions & 0 deletions v2/passwordless/common-customizations/embed-sign-in-up-form.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -330,6 +334,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -406,6 +414,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -496,6 +508,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -583,6 +599,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -672,6 +692,10 @@ SuperTokens.init({
recipeList: [
Passwordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down
30 changes: 24 additions & 6 deletions v2/thirdparty/common-customizations/embed-sign-in-up-form.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -325,7 +328,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -400,7 +406,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -489,7 +498,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -575,7 +587,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -663,7 +678,10 @@ SuperTokens.init({
},
recipeList: [
ThirdParty.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -325,7 +328,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -400,7 +406,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -489,7 +498,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -575,7 +587,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down Expand Up @@ -663,7 +678,10 @@ SuperTokens.init({
},
recipeList: [
ThirdPartyEmailPassword.init({
// ...
signInAndUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
}),
// ...
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -330,6 +334,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -406,6 +414,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -496,6 +508,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -583,6 +599,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down Expand Up @@ -672,6 +692,10 @@ SuperTokens.init({
recipeList: [
ThirdPartyPasswordless.init({
contactMethod: "EMAIL", // This example will work with any contactMethod
signInUpFeature: {
// highlight-next-line
disableDefaultUI: true, // This will prevent SuperTokens from displaying the default login UI in the `/auth` page.
},
// ...
}),
// ...
Expand Down

0 comments on commit 107a04c

Please sign in to comment.