From ad4b539961e913827eb8aafc88dc59461663fb25 Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Mon, 30 Jun 2025 20:17:24 +0300 Subject: [PATCH] add DAI symbol to token icon parser Signed-off-by: Uncle Fatso --- package.json | 2 +- src/components/Token/Token.jsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8874432..6480ae2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ghost-dao-interface", "private": true, - "version": "0.1.4", + "version": "0.1.5", "type": "module", "scripts": { "dev": "vite", diff --git a/src/components/Token/Token.jsx b/src/components/Token/Token.jsx index bb06b0a..20301e4 100644 --- a/src/components/Token/Token.jsx +++ b/src/components/Token/Token.jsx @@ -40,6 +40,9 @@ const Token = ({ name, viewBox = "0 0 260 260", fontSize = "large", ...props }) case "GDAI": icon = DaiIcon; break; + case "DAI": + icon = DaiIcon; + break; case "ETH": icon = WethIcon; break;