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 563cc8d commit b1d1f6d
Showing 1 changed file with 12 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -642,23 +642,18 @@ export const TokenBalancesListView: React.FC<TokenBalancesListViewProps> = ({
},
})}
</span>
<div className="flex text-sm text-secondary">
<span className="flex">
{" "}
(
{filterResult.match({
None: () => (
<Skeleton
size={GRK_SIZES.EXTRA_EXTRA_SMALL}
/>
),
Some: (result) => {
return <span>{result.length}</span>;
},
})}{" "}
</span>
Tokens)
</div>
<span className="flex text-sm text-secondary">
{filterResult.match({
None: () => (
<Skeleton
size={GRK_SIZES.EXTRA_EXTRA_SMALL}
/>
),
Some: (result) => {
return <span>{result.length} Tokens</span>;
},
})}
</span>
</div>
</div>
</div>
Expand Down

0 comments on commit b1d1f6d

Please sign in to comment.