From bada1bfa4f54cd3a5624e3c74e7205aaabbc60ff Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 18 Aug 2024 20:39:47 +0200 Subject: App: Timeframe: Fix bug with end timeframe not containing curr time --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 98f216c..78d76c2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -20,7 +20,7 @@ function App() { const endTimeframe = today(getLocalTimeZone()); const [timeframe, setTimeframe] = useState({ start: endTimeframe.subtract({ days: 7 }), - end: endTimeframe + end: endTimeframe.add({ days: 1 }) }) return ( -- cgit 1.4.1