diff --git a/src/components/Map/usePostsEngine.js b/src/components/Map/usePostsEngine.js index fc8a685..740e02c 100644 --- a/src/components/Map/usePostsEngine.js +++ b/src/components/Map/usePostsEngine.js @@ -929,8 +929,8 @@ export function usePostsEngine({ return false; } - // Apply time filter - if (tf && tf > 0) { + // Apply time filter (skip when showing search results - user wants all matches) + if (!searchResultsRef.current && tf && tf > 0) { const postTime = effectivePostTime(p); if (!matchesTimeFilter(postTime, tf)) return false; }