From fea2730de53892d6c43ff7bb79900a691e10a467 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Mon, 1 Sep 2025 05:05:10 +0000 Subject: [PATCH] Improve search functionality for video content by removing unnecessary logs Remove console logs from the FolxStadlPage component to clean up the output and improve performance. Replit-Commit-Author: Agent Replit-Commit-Session-Id: ab9cd02a-d0b2-4288-9ceb-1964d0059648 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/ab9cd02a-d0b2-4288-9ceb-1964d0059648/pSwkS7z --- client/src/pages/FolxStadlPage.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index c8c89d6..aa819a1 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -42,14 +42,10 @@ 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) { @@ -58,7 +54,6 @@ 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