fix: stratum deadlock + contrib-row CSS + README update for recent features

This commit is contained in:
AetherForge
2026-05-30 17:08:37 -07:00
parent 36fdc0194d
commit e6b8d84edf
3 changed files with 43 additions and 6 deletions

View File

@@ -230,7 +230,7 @@ export function ContributionBars({
const agentXmr = xmrPerDay != null ? xmrPerDay * (b.pct / 100) : null;
const agentUsd = agentXmr != null && xmrPrice ? agentXmr * xmrPrice : null;
return (
<div key={b.id} className="contrib-row">
<div key={b.id} className={`contrib-row${agentUsd != null ? ' has-usd' : ''}`}>
<span className="contrib-name" title={b.name}>{b.name}</span>
<div className="contrib-track">
<div className="contrib-fill" style={{ width: `${b.pct}%` }} />