From 9852187ee81d1b2777cd087e494044ba2a91ee16 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Wed, 17 Sep 2025 08:41:17 +0000 Subject: [PATCH] Increase the number of videos displayed on the home page Update the home page query to fetch 600 videos instead of 150. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 45a1dcfc-f8a2-475a-a6b9-96fbb841dc27 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/45a1dcfc-f8a2-475a-a6b9-96fbb841dc27/t0D2bHg --- client/src/pages/home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index d3817b7..6b543b1 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -21,7 +21,7 @@ export default function Home() { // Fetch videos with optimized loading const { data: videosResponse, isLoading, refetch } = useQuery({ queryKey: ["/api/videos", { - limit: 150, + limit: 600, offset: 0, search: searchQuery || undefined }],