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();