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) => {