From 81c799d49990a2635df48c7eefc515b962ec9419 Mon Sep 17 00:00:00 2001 From: Sarah Soutoul Date: Mon, 8 Dec 2025 09:24:10 -0600 Subject: [PATCH] Fix code snippets filenames --- .../development/custom-flows/authentication/email-links.mdx | 4 ++-- .../custom-flows/authentication/enterprise-connections.mdx | 2 +- .../authentication/last-authentication-strategy.mdx | 2 +- .../custom-flows/authentication/oauth-connections.mdx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guides/development/custom-flows/authentication/email-links.mdx b/docs/guides/development/custom-flows/authentication/email-links.mdx index 6a12ff48ab..60cc095662 100644 --- a/docs/guides/development/custom-flows/authentication/email-links.mdx +++ b/docs/guides/development/custom-flows/authentication/email-links.mdx @@ -47,7 +47,7 @@ This guide demonstrates how to use Clerk's API to build a custom flow for handli - ```tsx {{ filename: 'app/sign-up/page.tsx', collapsible: true }} + ```tsx {{ filename: 'app/sign-up/[[...sign-up]]/page.tsx', collapsible: true }} 'use client' import * as React from 'react' @@ -276,7 +276,7 @@ This guide demonstrates how to use Clerk's API to build a custom flow for handli - ```tsx {{ filename: 'app/sign-in/page.tsx', collapsible: true }} + ```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx', collapsible: true }} 'use client' import * as React from 'react' diff --git a/docs/guides/development/custom-flows/authentication/enterprise-connections.mdx b/docs/guides/development/custom-flows/authentication/enterprise-connections.mdx index a63c2937fe..1e288a9e05 100644 --- a/docs/guides/development/custom-flows/authentication/enterprise-connections.mdx +++ b/docs/guides/development/custom-flows/authentication/enterprise-connections.mdx @@ -16,7 +16,7 @@ You must configure your application instance through the Clerk Dashboard for the - ```tsx {{ filename: 'app/sign-in/page.tsx' }} + ```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }} 'use client' import * as React from 'react' diff --git a/docs/guides/development/custom-flows/authentication/last-authentication-strategy.mdx b/docs/guides/development/custom-flows/authentication/last-authentication-strategy.mdx index 93cbb3f682..c9719dc2df 100644 --- a/docs/guides/development/custom-flows/authentication/last-authentication-strategy.mdx +++ b/docs/guides/development/custom-flows/authentication/last-authentication-strategy.mdx @@ -21,7 +21,7 @@ The `lastAuthenticationStrategy` property is available on the [`Client`](/docs/r 1. Check the `lastAuthenticationStrategy` property to identify which OAuth provider was last used. 1. Display a badge next to the corresponding OAuth button. - ```tsx {{ filename: 'app/sign-in/page.tsx' }} + ```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }} 'use client' import * as React from 'react' diff --git a/docs/guides/development/custom-flows/authentication/oauth-connections.mdx b/docs/guides/development/custom-flows/authentication/oauth-connections.mdx index 4a722abfd6..569bd5db45 100644 --- a/docs/guides/development/custom-flows/authentication/oauth-connections.mdx +++ b/docs/guides/development/custom-flows/authentication/oauth-connections.mdx @@ -22,7 +22,7 @@ You must configure your application instance through the Clerk Dashboard for the - ```tsx {{ filename: 'app/sign-in/page.tsx' }} + ```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }} 'use client' import * as React from 'react'