Skip to content

Commit

Permalink
chore: support registration, verification & recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas committed Aug 20, 2024
1 parent d8814b1 commit f2e0e2c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/react-components/ory/sections/link-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { JSX } from "react"

import { gridStyle } from "../../../theme"
import { FilterFlowNodes } from "../helpers/filter-flow-nodes"
import { CaptchaSection } from "../helpers/captcha"

export interface LinkSectionProps {
nodes: UiNode[]
Expand Down Expand Up @@ -33,6 +34,7 @@ export const LinkSection = ({ nodes }: LinkSectionProps): JSX.Element => (
}}
/>
</div>
<CaptchaSection nodes={nodes} />
<FilterFlowNodes
filter={{
nodes: nodes,
Expand Down
3 changes: 3 additions & 0 deletions src/react-components/ory/sections/registration-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { JSX } from "react"
import { gridStyle } from "../../../theme"
import { FilterFlowNodes } from "../helpers/filter-flow-nodes"
import { hasPassword } from "../helpers/utils"
import { CaptchaSection } from "../helpers/captcha"

export interface RegistrationSectionProps {
nodes: UiNode[]
Expand All @@ -23,6 +24,8 @@ export const RegistrationSection = ({
}}
/>
</div>

<CaptchaSection nodes={nodes} />
<FilterFlowNodes
filter={{
nodes: nodes,
Expand Down

0 comments on commit f2e0e2c

Please sign in to comment.