Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into hperl/rm-ory-integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
hperl committed Mar 6, 2024
2 parents f140cc8 + 5e4a32a commit 4245684
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/react-components/ory/helpers/node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ export const Node = ({
const nodeType = attrs.type

const isSocial =
(attrs.name === "provider" || attrs.name === "link") &&
(attrs.name === "provider" ||
attrs.name === "link" ||
attrs.name === "unlink") &&
node.group === "oidc"

const submit: ButtonSubmit = {
Expand Down
9 changes: 6 additions & 3 deletions src/react-components/ory/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,24 @@ export * from "./helpers/node-script"
export * from "./helpers/types"
export * from "./helpers/user-auth-form"
export * from "./helpers/utils"
export * from "./sections/auth-code-section"
export * from "./sections/link-section"
export * from "./sections/logged-info"
export * from "./sections/login-section"
export * from "./sections/lookup-secret-settings-section"
export * from "./sections/lookup-secrets-section"
export * from "./sections/oidc-section"
export * from "./sections/oidc-settings-section"
export * from "./sections/passkey-settings-section"
export * from "./sections/password-settings-section"
export * from "./sections/passwordless-section"
export * from "./sections/profile-section"
export * from "./sections/registration-section"
export * from "./sections/totp-settings-section"
export * from "./sections/webauthn-settings-section"
export * from "./sections/passkey-settings-section"
export * from "./user-auth-card"
export * from "./user-error-card"
export * from "./user-settings-card"
export * from "./user-consent-card"
export * from "./user-error-card"
export * from "./user-logout-card"
export * from "./user-settings-card"
export * from "./user-settings-screen"

0 comments on commit 4245684

Please sign in to comment.