diff --git a/apps/web/app/(marketing)/docs/[...slug]/page.tsx b/apps/web/app/(marketing)/docs/[...slug]/page.tsx index 484485d21..b07fd4c4c 100644 --- a/apps/web/app/(marketing)/docs/[...slug]/page.tsx +++ b/apps/web/app/(marketing)/docs/[...slug]/page.tsx @@ -17,7 +17,7 @@ const getPageBySlug = cache(pageLoader); async function pageLoader(slug: string) { const client = await createCmsClient(); - return client.getContentItemBySlug({ slug, collection: 'pages' }); + return client.getContentItemBySlug({ slug, collection: 'documentation' }); } interface PageParams {