Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymous committed Mar 18, 2024
1 parent a084ae3 commit 86421da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moneynote-pc",
"version": "1.0.71",
"version": "1.0.72",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=1 max build",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/reports/Dashboard/DonutCategory.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default ({ request, title }) => {
useEffect(() => {
if (initialState.currentBook?.id) {
const rangeValues = radioValueToTimeRange(timeRange);
run({ bookId: initialState.currentBook.id, minTime: rangeValues[0].valueOf(), maxTime: rangeValues[1].valueOf() });
run({ book: initialState.currentBook.id, minTime: rangeValues[0].valueOf(), maxTime: rangeValues[1].valueOf() });
}
}, [timeRange, initialState.currentBook?.id]);

Expand Down

0 comments on commit 86421da

Please sign in to comment.