Ensure video scroll buttons are always visible on the main page

Update the NetflixGrid component to remove the prop that conditionally hides scroll buttons, ensuring they are always displayed.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/9NQBiz8
This commit is contained in:
sebastjanartic 2025-08-30 22:24:02 +00:00
parent b7d3a9883d
commit 8b2eb2a6aa

View File

@ -155,7 +155,7 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) {
<CategoryRow
category={category}
onVideoClick={handleVideoClick}
hideScrollButtons={isModalOpen}
hideScrollButtons={false}
/>
</div>
))}