diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-08-18 20:39:47 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-08-18 20:39:47 +0200 |
commit | bada1bfa4f54cd3a5624e3c74e7205aaabbc60ff (patch) | |
tree | 2898c2f559b78bd0b53cd041876dd6a4067bf39e | |
parent | Pages: File: Have path be based on fileID instead of path (diff) | |
download | fs-tracer-frontend-bada1bfa4f54cd3a5624e3c74e7205aaabbc60ff.tar.gz fs-tracer-frontend-bada1bfa4f54cd3a5624e3c74e7205aaabbc60ff.tar.bz2 fs-tracer-frontend-bada1bfa4f54cd3a5624e3c74e7205aaabbc60ff.zip |
App: Timeframe: Fix bug with end timeframe not containing curr time
-rw-r--r-- | src/App.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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 ( |