diff --git a/attached_assets/IMG_0588_1756673115482.png b/attached_assets/IMG_0588_1756673115482.png new file mode 100644 index 0000000..825b48b Binary files /dev/null and b/attached_assets/IMG_0588_1756673115482.png differ diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 9aac9e3..41df7cd 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -20,15 +20,15 @@ export default function FolxStadlPage() { const itemsPerPage = 10; const { data, isLoading } = useQuery<{videos: Video[], total: number}>({ - queryKey: ['/api/videos?limit=50'], + queryKey: ['/api/videos?limit=200'], select: (response) => response || { videos: [], total: 0 } }); const videos = data?.videos || []; - // Filter only FOLX STADL S4 videos (including both formats) + // Filter all FOLX STADL videos (including all seasons and formats) const folxStadlVideos = videos.filter(video => - video.title.includes("FOLX STADL S4") + video.title.includes("FOLX STADL") || video.title.includes("FOLXSTADL") ); // Pagination logic