Skip to content

Commit

Permalink
fix: asset list ui bug, ref #4603
Browse files Browse the repository at this point in the history
  • Loading branch information
alter-eggo committed Jan 8, 2024
1 parent 8c37393 commit 9a2e8b4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ interface StacksFungibleTokenAssetListProps {
assetBalances: StacksFungibleTokenAssetBalance[];
}
export function StacksFungibleTokenAssetList({ assetBalances }: StacksFungibleTokenAssetListProps) {
if (assetBalances.length === 0) return null;
return (
<Stack gap="space.05">
{assetBalances.map(assetBalance => (
Expand Down

0 comments on commit 9a2e8b4

Please sign in to comment.