Skip to content

Commit

Permalink
increase stream query offset (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-wu1 authored Feb 25, 2024
1 parent 0012688 commit 85ea945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/dashboard/components/PowerCharts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function PowerCharts({ cells, startDate, endDate, stream }) {
name: name,
powerData: await streamPowerData(
id,
DateTime.now().minus({ millisecond: interval + 1000 }),
DateTime.now().minus({ millisecond: interval + 29000 }),
DateTime.now(),
true,
),
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/dashboard/components/TerosCharts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function TerosCharts({ cells, startDate, endDate, stream }) {
name: name,
terosData: await streamTerosData(
id,
DateTime.now().minus({ millisecond: interval + 1000 }),
DateTime.now().minus({ millisecond: interval + 29000 }),
DateTime.now(),
true,
),
Expand Down

0 comments on commit 85ea945

Please sign in to comment.