diff --git a/.replit b/.replit index a8ca264..5b437fe 100644 --- a/.replit +++ b/.replit @@ -16,7 +16,7 @@ localPort = 5000 externalPort = 80 [[ports]] -localPort = 45029 +localPort = 37975 externalPort = 3000 [env] diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index fde09d3..78257f8 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -27,11 +27,18 @@ export default function FolxStadlPage() { }); const videos = data?.videos || []; + console.log('📺 FolxStadlPage: Total videos loaded:', videos.length); // Filter all FOLX STADL videos (including all seasons and formats) const folxStadlVideos = videos.filter(video => video.title.includes("FOLX STADL") || video.title.includes("FOLXSTADL") ); + console.log('🎪 FolxStadlPage: FOLX STADL videos found:', folxStadlVideos.length); + + // Debug: Show sample titles + if (videos.length > 0) { + console.log('📋 Sample video titles:', videos.slice(0, 5).map(v => v.title)); + } // Pagination logic const totalPages = Math.ceil(folxStadlVideos.length / itemsPerPage);