Skip to content

Commit

Permalink
fix: show collateral address for relevant tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalaji committed Feb 17, 2025
1 parent db12910 commit 5e15114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/tokens/TokenListModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export function TokenList({
</div>
<div className="ml-2 min-w-0 shrink text-left">
<div className="w-full truncate text-xs">
{t.token.addressOrDenom || 'Native chain token'}
{t.token.collateralAddressOrDenom || t.token.addressOrDenom || 'Native chain token'}
</div>
<div className="mt-0.5 flex space-x-1 text-xs">
<span>{`Decimals: ${t.token.decimals}`}</span>
Expand Down

0 comments on commit 5e15114

Please sign in to comment.