Skip to content

Commit

Permalink
Bug fix for avatar broken image
Browse files Browse the repository at this point in the history
  • Loading branch information
bobo-k2 committed Oct 19, 2023
1 parent 63a6481 commit c4cb432
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{{ $t('wallet.unifiedAccount.accountIcon') }}
</div>
<button type="button" class="box--account-icon" @click="selectNft">
<img v-if="avatar" :src="avatar.image" class="icon" />
<img v-if="avatar?.image" :src="avatar.image" class="icon" />
<jazzicon v-else :address="currentAccount" :diameter="32" class="icon" />
</button>
</div>
Expand Down

0 comments on commit c4cb432

Please sign in to comment.