Skip to content

Commit

Permalink
fix: wallet avatar empty address (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanmino authored Jun 20, 2023
1 parent b48d0ea commit 2de8ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entries/popup/components/WalletAvatar/WalletAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function WalletAvatar({
overflow: 'hidden',
}}
>
{isFetched ? (
{isFetched && address ? (
<>
{avatar?.imageUrl ? (
<Avatar.Image mask={mask} size={size} imageUrl={avatar.imageUrl} />
Expand Down

0 comments on commit 2de8ac5

Please sign in to comment.