Skip to content

Commit 228a8c6

Browse files
authored
Transactions page: stats widget alignment issue (#2942)
1 parent c7fd175 commit 228a8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/txs/TxsStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const TxsStats = () => {
6969
pendingTxns,
7070
txFeeSum24h,
7171
txFeeAvg,
72-
].filter(Boolean).length;
72+
].filter(item => item !== null && item !== undefined).length;
7373

7474
return (
7575
<Box

0 commit comments

Comments
 (0)