diff --git a/docs/organizations/org-slugs-in-urls.mdx b/docs/organizations/org-slugs-in-urls.mdx index eaa2e39c0a..571fe17057 100644 --- a/docs/organizations/org-slugs-in-urls.mdx +++ b/docs/organizations/org-slugs-in-urls.mdx @@ -167,7 +167,9 @@ This guide is intended for apps that require org slugs in URLs. **It's recommend export default function Home({ params }: { params: { slug: string } }) { const { orgSlug } = auth() - // Verify mismatch between route param and active organization slug from user's session + // Check for a match between route param and active organization slug + // from the user's session, and if so, show the list of valid + // organizations. if (params.slug != orgSlug) { return ( <>