diff --git a/attached_assets/image_1756484767870.png b/attached_assets/image_1756484767870.png new file mode 100644 index 0000000..22fea11 Binary files /dev/null and b/attached_assets/image_1756484767870.png differ diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index a2a97ae..88d4687 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -109,14 +109,17 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { return ( <> -
- {categories.map((category, categoryIndex) => ( - - ))} +
+ {categories.map((category, categoryIndex) => { + console.log(`Rendering category ${categoryIndex}: ${category.title} with ${category.videos.length} videos`); + return ( + + ); + })}