diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 5fbd2d1..08af6e1 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -11,13 +11,13 @@ export default function FolxStadlPage() { const [isModalOpen, setIsModalOpen] = useState(false); const { data, isLoading } = useQuery<{videos: Video[], total: number}>({ - queryKey: ['/api/videos'], + queryKey: ['/api/videos?limit=200'], select: (response) => response || { videos: [], total: 0 } }); const videos = data?.videos || []; - // Filter only FOLX STADL S4 videos + // Filter only FOLX STADL S4 videos (including both formats) const folxStadlVideos = videos.filter(video => video.title.includes("FOLX STADL S4") );