diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 8abd7ae..23e526f 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -214,10 +214,18 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) { } }; + console.log(`CategoryRow rendering: ${category.title}, videos: ${category.videos.length}`); + return (

- {category.title} + {category.title} ({category.videos.length} videos) +