adads
All checks were successful
Deploy / deploy-staging (push) Successful in 26s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-08-14 01:14:40 +02:00
parent 7e8b7f336b
commit 97e5a2e2da

View File

@@ -2805,7 +2805,7 @@
const totalSpentOverallFiat = totalSpentOverallCurrentAsset !== null
? convertCurrencyValue(totalSpentOverallCurrentAsset, currentCoinCurrency, reportCurrency)
: null;
const spentByType = activeMinerRows.reduce((summary, row) => {
const spentByType = allMinerRows.reduce((summary, row) => {
const amount = Number(row?.effective_amount);
const currency = String(row?.effective_currency || '').toUpperCase();
if (!Number.isFinite(amount) || amount <= 0 || !currency) {