diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index a8cc308..7dd170e 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -215,9 +215,8 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) { // Initialize with first video on the left side useEffect(() => { if (category.videos.length > 0) { - // Start at middle position for seamless loop - const totalWidth = category.videos.length * videoWidth; - setTranslateX(-totalWidth / 2); + // Start with video 1 visible on the left side + setTranslateX(0); } }, [category.videos.length]);