Skip to content

Commit

Permalink
fix: ui
Browse files Browse the repository at this point in the history
  • Loading branch information
jagnani73 committed Dec 5, 2023
1 parent b1d1f6d commit 66d222b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,9 @@ export const TokenBalancesListView: React.FC<TokenBalancesListViewProps> = ({
/>
),
Some: (result) => {
return <span>{result.length} Tokens</span>;
return (
<span>({result.length} Tokens)</span>
);
},
})}
</span>
Expand Down

0 comments on commit 66d222b

Please sign in to comment.