Change ETH price label to "$x,xxx.xx USD/ETH"
Some checks failed
check / check (push) Has been cancelled

This commit is contained in:
2026-02-26 16:01:26 +07:00
parent 938861c12e
commit 881217b16c

View File

@@ -33,7 +33,7 @@ function renderTotalValue() {
const ethPrice = getPrice("ETH"); const ethPrice = getPrice("ETH");
if (priceEl) { if (priceEl) {
priceEl.textContent = ethPrice ? "ETH " + formatUsd(ethPrice) : ""; priceEl.textContent = ethPrice ? formatUsd(ethPrice) + " USD/ETH" : "";
} }
const addr = findActiveAddr(); const addr = findActiveAddr();