We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4823e1c commit ba7de5dCopy full SHA for ba7de5d
apps/namadillo/src/App/Transfer/SelectToken.tsx
@@ -172,9 +172,11 @@ export const SelectToken = ({
172
}
173
};
174
175
- const getOverlayChainLogo = (token: AssetWithAmount): JSX.Element => {
+ const getOverlayChainLogo = (token: AssetWithAmount): JSX.Element | null => {
176
const chain = getChainFromAsset(token);
177
const chainImageUrl = getChainImageUrl(chain);
178
+ const isNamada = token.asset.symbol === "NAM";
179
+ if (isNamada) return null;
180
return (
181
<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">
182
<img
0 commit comments