From 7c60129fd4b18fee78d066360928931c6f7d1b5b Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 16:01:19 +0000 Subject: [PATCH] Improve filtering to display specific Folx Stadl videos Update the video filtering logic in `FolxStadlPage.tsx` to correctly display videos titled "FOLX STADL S4". 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/pages/FolxStadlPage.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 83e7fbb..f685411 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -14,11 +14,9 @@ export default function FolxStadlPage() { queryKey: ['/api/videos'] }); - // Filter only FOLX STADL videos + // Filter only FOLX STADL S4 videos const folxStadlVideos = Array.isArray(videos) ? videos.filter(video => - video.title.includes("FOLX STADL S4") || - video.title.includes("FOLXSTADL_S04") || - video.title.includes("FOLX STADL S4 -") + video.title.includes("FOLX STADL S4") ) : []; const handleVideoClick = (video: Video) => {