Avoid displaying `UNKNOWN` in owner's list (#1881)

This commit is contained in:
Fernando 2021-02-11 05:22:27 -03:00 committed by GitHub
parent fa2262f8b0
commit 1994f62827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export const OwnerRow = ({ ownerAddress }: { ownerAddress: string }): ReactEleme
return (
<EthHashInfo
hash={ownerAddress}
name={ownerName}
name={ownerName === 'UNKNOWN' ? '' : ownerName}
showIdenticon
showCopyBtn
explorerUrl={getExplorerInfo(ownerAddress)}