diff --git a/attached_assets/image_1756569328748.png b/attached_assets/image_1756569328748.png new file mode 100644 index 0000000..6cd5bf4 Binary files /dev/null and b/attached_assets/image_1756569328748.png differ diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index e309646..83e7fbb 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -15,11 +15,11 @@ export default function FolxStadlPage() { }); // Filter only FOLX STADL videos - const folxStadlVideos = videos.filter(video => + 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 -") - ); + ) : []; const handleVideoClick = (video: Video) => { setSelectedVideo(video);