diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index d9c9401..e4772c6 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -186,7 +186,10 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) { }, []); return ( -
+
setClickedVideoId(null)} + >

{category.title}

@@ -224,12 +227,7 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
{ - // Reset clicked state when hovering over any video - if (clickedVideoId) { - setClickedVideoId(null); - } - }} + onMouseEnter={() => setClickedVideoId(video.id)} > {/* Top 10 Number overlay for first category */} {category.title.includes("Top 10") && index < 10 && clickedVideoId !== video.id && (