Skip to content

Commit

Permalink
fix(ui-ux): fixed icon for evm DFI on swap token listing
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstackninja864 committed Oct 12, 2023
1 parent 82cdf22 commit 58b999c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export interface SelectionToken {
name: string;
displaySymbol: string;
displayTextSymbol?: string;
domainType?: DomainType;
symbol: string;
isLPS?: boolean;
};
Expand Down Expand Up @@ -228,7 +229,7 @@ function TokenItem({
displaySymbol: item.token.displaySymbol,
}}
size={36}
isEvmToken={isEvmDomain}
isEvmToken={isEvmDomain || item.token.domainType === DomainType.EVM}
/>
<TokenNameText
displaySymbol={
Expand Down

0 comments on commit 58b999c

Please sign in to comment.