Commit f5c45df0 authored by GimluCom's avatar GimluCom Committed by GitHub

Update TxsStats.tsx (#2633)

Fix evaluation of txFeeSum24h
parent 707544e2
...@@ -105,7 +105,7 @@ const TxsStats = () => { ...@@ -105,7 +105,7 @@ const TxsStats = () => {
isLoading={ isLoading } isLoading={ isLoading }
/> />
) } ) }
{ txFeeSum24h && ( { txFeeSum24h != null && (
<StatsWidget <StatsWidget
label={ txsStatsQuery.data?.transactions_fee_24h?.title ? label={ txsStatsQuery.data?.transactions_fee_24h?.title ?
getLabelFromTitle(txsStatsQuery.data?.transactions_fee_24h?.title) : getLabelFromTitle(txsStatsQuery.data?.transactions_fee_24h?.title) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment