Skip to content

Commit ba7de5d

Browse files
committed
fix: update nam
1 parent 4823e1c commit ba7de5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/namadillo/src/App/Transfer/SelectToken.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,11 @@ export const SelectToken = ({
172172
}
173173
};
174174

175-
const getOverlayChainLogo = (token: AssetWithAmount): JSX.Element => {
175+
const getOverlayChainLogo = (token: AssetWithAmount): JSX.Element | null => {
176176
const chain = getChainFromAsset(token);
177177
const chainImageUrl = getChainImageUrl(chain);
178+
const isNamada = token.asset.symbol === "NAM";
179+
if (isNamada) return null;
178180
return (
179181
<div className="absolute -bottom-0.5 -right-0.5 w-5 h-5 rounded-full bg-black border-2 border-neutral-600 flex items-center justify-center overflow-hidden z-10">
180182
<img

0 commit comments

Comments
 (0)