From db4b3c0cf03b8b17fe97423bdb173c2899e62813 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Fri, 29 Aug 2025 16:25:06 +0000 Subject: [PATCH] Add debugging logs to the video grid component Add console logs to NetflixGrid component to display video count and category details for debugging purposes. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2eb1084e-b728-4449-9231-f1665924c8d5 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2eb1084e-b728-4449-9231-f1665924c8d5/vbVxnR5 --- client/src/components/netflix-grid.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index d0e1454..a2a97ae 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -102,6 +102,10 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { } const categories = getCategories(); + + // Debug logging + console.log('Videos count:', videos.length); + console.log('Categories:', categories.map(c => ({ title: c.title, videoCount: c.videos.length }))); return ( <>