diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index aa819a1..c8c89d6 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -42,10 +42,14 @@ export default function FolxStadlPage() { const videos = data?.videos || []; + console.log('Total videos received:', videos.length); + // Filter all FOLX STADL videos (including all seasons and formats) let folxStadlVideos = videos.filter(video => video.title.includes("FOLX STADL") || video.title.includes("FOLXSTADL") ); + + console.log('FOLX STADL videos after filter:', folxStadlVideos.length); // Apply search filter if search query exists if (searchQuery && searchQuery.length >= 2) { @@ -54,6 +58,7 @@ export default function FolxStadlPage() { video.title.toLowerCase().includes(searchLower) || video.description?.toLowerCase().includes(searchLower) ); + console.log('FOLX STADL videos after search filter:', folxStadlVideos.length); } // Pagination logic