From 881217b16ce2cfed0b22f06989c0adf1c1a6e54d Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 16:01:26 +0700 Subject: [PATCH] Change ETH price label to "$x,xxx.xx USD/ETH" --- src/popup/views/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/views/home.js b/src/popup/views/home.js index 55a066c..6927716 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -33,7 +33,7 @@ function renderTotalValue() { const ethPrice = getPrice("ETH"); if (priceEl) { - priceEl.textContent = ethPrice ? "ETH " + formatUsd(ethPrice) : ""; + priceEl.textContent = ethPrice ? formatUsd(ethPrice) + " USD/ETH" : ""; } const addr = findActiveAddr();