Filtering via FilterBar.

This commit is contained in:
Mike Cao 2025-06-19 16:47:18 -07:00
parent da173779e0
commit 0a43ef7b1b
9 changed files with 83 additions and 26 deletions

View file

@ -27,11 +27,12 @@ export function useDateRange(websiteId?: string) {
const startDate = new Date(mindate);
const endDate = new Date(maxdate);
const unit = getMinimumUnit(startDate, endDate);
dateRange = {
startDate,
endDate,
unit: getMinimumUnit(startDate, endDate),
unit,
value,
};
} else {