diff --git a/docs/references/tanstack-react-start/custom-sign-in-or-up-page.mdx b/docs/references/tanstack-react-start/custom-sign-in-or-up-page.mdx index 71f0ce283b..a76ec290af 100644 --- a/docs/references/tanstack-react-start/custom-sign-in-or-up-page.mdx +++ b/docs/references/tanstack-react-start/custom-sign-in-or-up-page.mdx @@ -15,11 +15,11 @@ To set up separate sign-in and sign-up pages, follow this guide, and then follow The following example demonstrates how to render the [``](/docs/components/authentication/sign-in) component on a dedicated page using the [TanStack Router catch-all route](https://tanstack.com/router/latest/docs/framework/react/routing/routing-concepts#splat--catch-all-routes). - ```tsx {{ filename: 'src/routes/sign-in.$.tsx' }} + ```tsx {{ filename: 'src/routes/sign-in.tsx' }} import { SignIn } from '@clerk/tanstack-react-start' import { createFileRoute } from '@tanstack/react-router' - export const Route = createFileRoute('/sign-in/$')({ + export const Route = createFileRoute('/sign-in')({ component: Page, })