about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-08-18 20:39:47 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-08-18 20:39:47 +0200
commitbada1bfa4f54cd3a5624e3c74e7205aaabbc60ff (patch)
tree2898c2f559b78bd0b53cd041876dd6a4067bf39e
parentPages: File: Have path be based on fileID instead of path (diff)
downloadfs-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.tsx2
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 (