From 1152c317fb97d2a639b57aeb7f2445d49457dcda Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 15:27:14 +0000 Subject: [PATCH] Update video display to exclude individual artist content Modify the NetflixGrid component to filter out videos tagged with "FOLX STADL" or "FOLXSTADL", grouping remaining videos by performer. 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 --- client/src/components/netflix-grid.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 863ad59..7b4ebda 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -57,14 +57,14 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { { title: "Recently Added", videos: (() => { - // Filter videos from "Geschichte des Liedes" collection - const geschichteVideos = videos.filter(video => - video.title.includes("Geschichte des Liedes") + // Filter videos that are NOT FOLX STADL (individual artists) + const artistVideos = videos.filter(video => + !video.title.includes("FOLX STADL") && !video.title.includes("FOLXSTADL") ); // Group by performer/artist (extract performer name before " - ") const performerGroups: { [key: string]: typeof videos } = {}; - geschichteVideos.forEach(video => { + artistVideos.forEach(video => { const performer = video.title.split(" - ")[0] || "Unknown"; if (!performerGroups[performer]) { performerGroups[performer] = [];