Skip to content

Commit

Permalink
fix: unified evm avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarsen136 committed Aug 15, 2024
1 parent 8b78c40 commit 01b730e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/shared/Avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ const props = withDefaults(
},
)
const formattedAddress = computed(() => props.value.toLowerCase())
const evmAvatarSvg = computed(() =>
toSvg(props.value, props.size - 2, {
toSvg(formattedAddress.value, props.size - 2, {
padding: 0.1,
}),
)
Expand Down

0 comments on commit 01b730e

Please sign in to comment.