Skip to content

Commit

Permalink
fix: display total tx count
Browse files Browse the repository at this point in the history
  • Loading branch information
Holybasil committed Sep 24, 2024
1 parent 0e5fa27 commit 807671a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ecosystem/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Header = () => {
{data?.tvl}
</Statistic>
<Statistic label="Transaction count" loading={isLoading}>
{data?.txCount}
{data?.txAll}
</Statistic>
<Statistic label="Batches settled to L1" loading={isBatchesLoading}>
{totalBatches}
Expand Down

0 comments on commit 807671a

Please sign in to comment.