diff --git a/explorer/src/components/ExplorerStats/ChainOverviewCard.tsx b/explorer/src/components/ExplorerStats/ChainOverviewCard.tsx index b87205b5b..e63412365 100644 --- a/explorer/src/components/ExplorerStats/ChainOverviewCard.tsx +++ b/explorer/src/components/ExplorerStats/ChainOverviewCard.tsx @@ -30,8 +30,8 @@ const ChainOverviewCard: React.FC = ({ let timeout: NodeJS.Timeout; if ( - totals?.LastDayCount[dataKey] && - totalCount !== totals?.LastDayCount[dataKey] + totals?.TotalCount[dataKey] && + totalCount !== totals?.TotalCount[dataKey] ) { setAnimate(true); timeout = setTimeout(() => { @@ -45,7 +45,6 @@ const ChainOverviewCard: React.FC = ({ }; }, [ totals?.TotalCount[dataKey], - totals?.LastDayCount[dataKey], dataKey, totalCount, ]);