From 8b902ddf32ed7f30ee125d6aaac3c5249ebf86e3 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 4 Sep 2025 06:52:37 +0000 Subject: [PATCH] Remove the "ODDAJE" section from the video grid Removes the "ODDAJE" category from the NetflixGrid component in the client-side application. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/DVlzRoR --- client/src/components/netflix-grid.tsx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index 0607653..87528ab 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -97,24 +97,6 @@ export default function NetflixGrid({ videos, isLoading }: NetflixGridProps) { return shuffled.slice(0, 10); })() }, - { - title: "ODDAJE", - videos: (() => { - // Filter content that are specifically shows/episodes (EXCLUDING Gipfelstammtisch) - const showVideos = videos.filter(video => - (video.title.toLowerCase().includes("oddaja") || - video.title.toLowerCase().includes("sendung") || - video.title.toLowerCase().includes("episode")) && - !video.title.includes("Gipfelstammtisch") // EXCLUDE Gipfelstammtisch from ODDAJE - ); - - // Shuffle the show videos randomly - const shuffled = [...showVideos].sort(() => Math.random() - 0.5); - - // Return 10 random videos from the ODDAJE collection - return shuffled.slice(0, 10); - })() - }, { title: "GIPFELSTAMMTISCH", videos: (() => {