diff --git a/examples/with-turbopack/app/hooks/[categorySlug]/[subCategorySlug]/page.tsx b/examples/with-turbopack/app/hooks/[categorySlug]/[subCategorySlug]/page.tsx index 17332209bc76..59b42fd7fec9 100644 --- a/examples/with-turbopack/app/hooks/[categorySlug]/[subCategorySlug]/page.tsx +++ b/examples/with-turbopack/app/hooks/[categorySlug]/[subCategorySlug]/page.tsx @@ -4,7 +4,7 @@ import { SkeletonCard } from '@/ui/SkeletonCard'; export default function Page({ params }: PageProps) { const category = use( - fetchSubCategory(params.categorySlug, params.subCategory), + fetchSubCategory(params.categorySlug, params.subCategorySlug), ); if (!category) return null; return (