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] = [];