From 35da962800fffc18cfffcb3103c2b135c753d4d1 Mon Sep 17 00:00:00 2001 From: Sociowire Dev Date: Mon, 12 Jan 2026 19:28:48 +0000 Subject: [PATCH] Change time filter: 1h becomes 'now' showing 3 hours - First time option now shows "now" label instead of "1h" - Filters for posts from last 3 hours instead of 1 hour - Other time options remain: 6h, 24h, 7d, 2w Co-Authored-By: Claude Opus 4.5 --- src/components/Map/RadialMenu.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Map/RadialMenu.jsx b/src/components/Map/RadialMenu.jsx index 3cb9eae..5e00d48 100644 --- a/src/components/Map/RadialMenu.jsx +++ b/src/components/Map/RadialMenu.jsx @@ -34,7 +34,7 @@ const SUBCATEGORIES = { }; const TIME_OPTIONS = [ - { label: "1h", hours: 1 }, + { label: "now", hours: 3 }, { label: "6h", hours: 6 }, { label: "24h", hours: 24 }, { label: "7d", hours: 168 },