Skip to content

Commit 1723f6e

Browse files
committed
chore: run format
1 parent c1cc2f7 commit 1723f6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+285
-105
lines changed

eslint.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ const config = tseslint.config([
288288
],
289289
},
290290
],
291-
}
292-
}
291+
},
292+
},
293293
])
294294

295295
export default config

examples/nextjs-app-router-custom-components/components/custom-button.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
"use client"
25
import { getNodeLabel } from "@ory/client-fetch"
36
import { OryNodeButtonProps } from "@ory/elements-react"

examples/nextjs-app-router-custom-components/components/custom-checkbox.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { getNodeLabel } from "@ory/client-fetch"
25
import { OryNodeCheckboxProps } from "@ory/elements-react"
36

examples/nextjs-app-router-custom-components/components/custom-footer.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
/* eslint-disable @typescript-eslint/no-unsafe-enum-comparison -- eslint gets confused because of different versions of @ory/client-fetch */
25
import { FlowType } from "@ory/client-fetch"
36
import { useOryFlow } from "@ory/elements-react"

examples/nextjs-app-router-custom-components/components/custom-image.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { OryNodeImageProps } from "@ory/elements-react"
25

36
export function MyCustomImage({ node }: OryNodeImageProps) {

examples/nextjs-app-router-custom-components/components/custom-input.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { OryNodeInputProps } from "@ory/elements-react"
25

36
export function MyCustomInput({ inputProps }: OryNodeInputProps) {

examples/nextjs-app-router-custom-components/components/custom-label.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { OryNodeLabelProps } from "@ory/elements-react"
25

36
export function MyCustomLabel({

examples/nextjs-app-router-custom-components/components/custom-pin-code.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { OryNodeInputProps } from "@ory/elements-react"
25

36
export function MyCustomPinCodeInput({ inputProps }: OryNodeInputProps) {

examples/nextjs-app-router-custom-components/components/custom-social.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
import { OryNodeSsoButtonProps } from "@ory/elements-react"
25
import { IconBrandGoogle, IconTopologyRing } from "@tabler/icons-react"
36

examples/nextjs-app-router-custom-components/components/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright © 2026 Ory Corp
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
"use client"
25
import { OryFlowComponentOverrides } from "@ory/elements-react"
36
import { MyCustomButton } from "./custom-button"

0 commit comments

Comments
 (0)