From 8adab752ff0ee306fbcf948aa3d998d3200e9f59 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 26 Dec 2025 02:01:26 -0500 Subject: [PATCH] Cap visible posts at 60 --- src/components/Map/usePostsEngine.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Map/usePostsEngine.js b/src/components/Map/usePostsEngine.js index 9cbf0ff..4e70948 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 = 120; -const MAX_VISIBLE_POSTS = 70; +const MAX_POOL_POSTS = 90; +const MAX_VISIBLE_POSTS = 60; function prunePosts(posts, center, maxCount) { if (!Array.isArray(posts) || posts.length <= maxCount) return posts || [];