diff --git a/tools/obscuroscan_v3/frontend/src/components/modules/dashboard/index.tsx b/tools/obscuroscan_v3/frontend/src/components/modules/dashboard/index.tsx index ed13bd8c5f..f32bacfa08 100644 --- a/tools/obscuroscan_v3/frontend/src/components/modules/dashboard/index.tsx +++ b/tools/obscuroscan_v3/frontend/src/components/modules/dashboard/index.tsx @@ -39,7 +39,7 @@ export default function Dashboard() { const DASHBOARD_DATA = [ { title: "Ether Price", - value: price?.ethereum?.usd || "N/A", + value: price?.ethereum?.usd ? `$${price.ethereum.usd}` : "N/A", // TODO: add change // change: "+20.1%", icon: RocketIcon,