Skip to content

Commit b25741c

Browse files
committed
try
1 parent 5fdb18b commit b25741c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CountItems/CountManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ class CountManager {
7272
&& results.dataManaged.locations
7373
&& results.dataManaged.total) {
7474
const { locations, total } = results.dataManaged;
75-
this.store.dataManaged.total.curr += BigInt(total.curr);
76-
this.store.dataManaged.total.prev += BigInt(total.prev);
75+
this.store.dataManaged.total.curr += total.curr;
76+
this.store.dataManaged.total.prev += total.prev;
7777
Object.keys(locations).forEach(site => {
7878
if (!this.store.dataManaged.byLocation[site]) {
7979
this.store.dataManaged.byLocation[site] = { ...locations[site] };

0 commit comments

Comments
 (0)