Adjust time windows for map filters

This commit is contained in:
Your Name 2025-12-30 19:13:37 -05:00
parent 794b083356
commit 8fca9af710
1 changed files with 2 additions and 2 deletions

View File

@ -73,11 +73,11 @@ export function matchesTimeFilter(createdAt, timeFilter) {
switch (timeFilter) { switch (timeFilter) {
case "NOW": case "NOW":
return diffHours <= 3; return diffHours <= 2;
case "TODAY": case "TODAY":
return diffHours <= 24; return diffHours <= 24;
case "RECENT": case "RECENT":
return diffDays <= 3; return diffHours <= 72;
case "PAST": case "PAST":
return diffDays <= 15; return diffDays <= 15;
default: default: