diff --git a/docs/reference/components/organization/organization-profile.mdx b/docs/reference/components/organization/organization-profile.mdx index d12519e631..c714b625fe 100644 --- a/docs/reference/components/organization/organization-profile.mdx +++ b/docs/reference/components/organization/organization-profile.mdx @@ -20,7 +20,7 @@ The **Billing** tab displays the plans and features that are available to the or ## Example - The `` component must embedded using the [Next.js optional catch-all route](https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes#optional-catch-all-routes) in order for the routing to work. + The `` component must be embedded using the [Next.js optional catch-all route](https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes#optional-catch-all-routes) in order for the routing to work. ```jsx {{ filename: 'app/organization-profile/[[...organization-profile]]/page.tsx' }} import { OrganizationProfile } from '@clerk/nextjs' @@ -86,7 +86,7 @@ The **Billing** tab displays the plans and features that are available to the or - The `` component must embedded using the [React Router Splat route](https://reactrouter.com/start/framework/routing#splats) in order for the routing to work. + The `` component must be embedded using the [React Router Splat route](https://reactrouter.com/start/framework/routing#splats) in order for the routing to work. ```tsx {{ filename: 'app/routes/organization-profile.$.tsx' }} import { OrganizationProfile } from '@clerk/react-router' @@ -98,7 +98,7 @@ The **Billing** tab displays the plans and features that are available to the or - The `` component must embedded using the [TanStack Router catch-all route](https://tanstack.com/router/latest/docs/framework/react/routing/routing-concepts#splat--catch-all-routes) in order for the routing to work. + The `` component must be embedded using the [TanStack Router catch-all route](https://tanstack.com/router/latest/docs/framework/react/routing/routing-concepts#splat--catch-all-routes) in order for the routing to work. ```tsx {{ filename: 'app/routes/organization-profile.$.tsx' }} import { OrganizationProfile } from '@clerk/tanstack-react-start' diff --git a/docs/reference/components/user/user-profile.mdx b/docs/reference/components/user/user-profile.mdx index 37022dde78..8a878f1df5 100644 --- a/docs/reference/components/user/user-profile.mdx +++ b/docs/reference/components/user/user-profile.mdx @@ -14,7 +14,7 @@ The `` component is used to render a beautiful, full-featured acc ## Example - The `` component must embedded using the [Next.js optional catch-all route](https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes#optional-catch-all-routes) in order for the routing to work. + The `` component must be embedded using the [Next.js optional catch-all route](https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes#optional-catch-all-routes) in order for the routing to work. ```jsx {{ filename: 'app/user-profile/[[...user-profile]]/page.tsx' }} import { UserProfile } from '@clerk/nextjs' @@ -70,7 +70,7 @@ The `` component is used to render a beautiful, full-featured acc - The `` component must embedded using the [Remix optional route](https://reactrouter.com/en/main/route/route#optional-segments). in order for the routing to work. + The `` component must be embedded using the [Remix optional route](https://reactrouter.com/en/main/route/route#optional-segments) in order for the routing to work. ```tsx {{ filename: 'app/routes/user.$.tsx' }} import { UserProfile } from '@clerk/remix' @@ -82,7 +82,7 @@ The `` component is used to render a beautiful, full-featured acc - The `` component must embedded using the [React Router Splat route](https://reactrouter.com/start/framework/routing#splats) in order for the routing to work. + The `` component must be embedded using the [React Router Splat route](https://reactrouter.com/start/framework/routing#splats) in order for the routing to work. ```tsx {{ filename: 'app/routes/user-profile.$.tsx' }} import { UserProfile } from '@clerk/react-router' @@ -94,7 +94,7 @@ The `` component is used to render a beautiful, full-featured acc - The `` component must embedded using the [TanStack Router catch-all route](https://tanstack.com/router/latest/docs/framework/react/routing/routing-concepts#splat--catch-all-routes) in order for the routing to work. + The `` component must be embedded using the [TanStack Router catch-all route](https://tanstack.com/router/latest/docs/framework/react/routing/routing-concepts#splat--catch-all-routes) in order for the routing to work. ```tsx {{ filename: 'app/routes/user-profile.$.tsx' }} import { UserProfile } from '@clerk/tanstack-react-start'