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
This commit is contained in:
sebastjanartic 2025-08-30 16:01:19 +00:00
parent 353f1048b7
commit 7c60129fd4

View File

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