Skip to content

Commit

Permalink
bug fix: wallet truncation on nft detail mobile (#2419)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan-cp authored Apr 10, 2024
1 parent 8ef9243 commit 2d4ebd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/mobile/src/components/EnsOrAddress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const EnsName = ({ chainAddressRef, eventContext }: EnsNameProps) => {
return (
<RawLinkableAddress
link={link}
address={addressData?.address}
truncatedAddress={addressData?.name}
address={addressData?.address ?? addressData?.name}
truncatedAddress={null}
textStyle={{ color: colorScheme === 'dark' ? colors.white : colors.black['800'] }}
font={{ family: 'ABCDiatype', weight: 'Bold' }}
eventElementId="ENS Name"
Expand Down

0 comments on commit 2d4ebd9

Please sign in to comment.