diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index f70a34c..7a8b190 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -71,7 +71,7 @@ export default function VideoPage() { // Fetch recommended videos (excluding current video) const { data: recommendedResponse } = useQuery({ queryKey: ["/api/videos"], - queryFn: () => fetch("/api/videos?limit=20&offset=0").then(res => res.json()), + queryFn: () => fetch("/api/videos?limit=150&offset=0").then(res => res.json()), enabled: !!videoId, });