diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 194ae7c..89abb35 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -154,8 +154,8 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) { if (direction === 'right' && newX <= -singleSetWidth * 2) { // When moved past second copy, wrap to start of first copy return newX + singleSetWidth; - } else if (direction === 'left' && newX > 0) { - // When moving left past start, wrap to end of second copy + } else if (direction === 'left' && newX >= 0) { + // When moving left past first copy, wrap to end of second copy return newX - singleSetWidth; }