Skip to content

Commit

Permalink
fix: untagged captures (Greenstand#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquemoreiraa authored Feb 18, 2023
1 parent 507bd37 commit 9145981
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/DashStat.container.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ function DashStatUnprocessedCaptures(props) {
const [totalUnprocessed, setTotalUnprocessed] = useState(null);

const getTotalUnprocessed = async () => {
const { count } = await api.getRawCaptureCount(unprocessedFilter);
const { count } = await api.getRawCaptureCount({
filter: unprocessedFilter,
});
setTotalUnprocessed(count);
};

Expand Down

0 comments on commit 9145981

Please sign in to comment.