diff --git a/src/components/Map/usePostsEngine.js b/src/components/Map/usePostsEngine.js index 4e70948..8df7c4c 100644 --- a/src/components/Map/usePostsEngine.js +++ b/src/components/Map/usePostsEngine.js @@ -114,8 +114,8 @@ function getPostTimeMs(p) { return d.getTime(); } -const MAX_POOL_POSTS = 90; -const MAX_VISIBLE_POSTS = 60; +const MAX_POOL_POSTS = 75; +const MAX_VISIBLE_POSTS = 45; function prunePosts(posts, center, maxCount) { if (!Array.isArray(posts) || posts.length <= maxCount) return posts || []; @@ -659,7 +659,7 @@ export function usePostsEngine({ lat, lon: lng, radius_km: radiusKm, - limit: 60, + limit: 45, zoom, bounds, username: username || undefined,