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

This commit is contained in:
2026-06-24 01:32:09 +02:00
parent 04b43ded1b
commit 5ff4c3fb2b

View File

@@ -2573,7 +2573,7 @@
h(StatCard, { h(StatCard, {
key: 'coins', key: 'coins',
label: `${currentCoinCurrency} im Miner`, label: `${currentCoinCurrency} im Miner`,
value: latest ? fmtNumber(latest.coins_total_visible || latest.coins_total, 6) : 'n/a', value: latest ? fmtNumber(latest.coins_total_visible ?? latest.coins_total, 6) : 'n/a',
sub: latest ? `Stand ${fmtDate(latest.measured_at)}` : '', sub: latest ? `Stand ${fmtDate(latest.measured_at)}` : '',
}), }),
h(StatCard, { h(StatCard, {
@@ -2581,7 +2581,7 @@
label: `Theoretischer Bestand ${currentCoinCurrency}`, label: `Theoretischer Bestand ${currentCoinCurrency}`,
value: payload?.summary?.payouts ? fmtNumber(holdingsCurrentAsset, 6) : 'n/a', value: payload?.summary?.payouts ? fmtNumber(holdingsCurrentAsset, 6) : 'n/a',
sub: payload?.summary?.payouts sub: payload?.summary?.payouts
? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible || latest?.coins_total, 6)} ${currentCoinCurrency}` ? `Wallet ${fmtNumber(walletBalanceCurrentAsset, 6)} ${currentCoinCurrency} · Miner ${fmtNumber(latest?.coins_total_visible ?? latest?.coins_total, 6)} ${currentCoinCurrency}`
: '', : '',
}), }),
h(StatCard, { h(StatCard, {