diff --git a/src/react-components/ory/helpers/node.tsx b/src/react-components/ory/helpers/node.tsx index 15a4e34b0..3f618ba8a 100644 --- a/src/react-components/ory/helpers/node.tsx +++ b/src/react-components/ory/helpers/node.tsx @@ -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 = { diff --git a/src/react-components/ory/index.ts b/src/react-components/ory/index.ts index 0f142f38a..33f2246a3 100644 --- a/src/react-components/ory/index.ts +++ b/src/react-components/ory/index.ts @@ -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"