Update grid to display specific Folx Stadl S4 collections
Modify the NetflixGrid component to filter videos and display up to 15 items with "FOLX STADL S4" in their title. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/DVZN4Rp
This commit is contained in:
parent
11d8dc70f6
commit
6e68075851
@ -52,7 +52,7 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "FOLX STADL",
|
title: "FOLX STADL",
|
||||||
videos: sortedByViews.slice(10, 20)
|
videos: videos.filter(video => video.title.includes("FOLX STADL S4")).slice(0, 15)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Recently Added",
|
title: "Recently Added",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user