Avoid displaying `UNKNOWN` in owner's list (#1881)
This commit is contained in:
parent
fa2262f8b0
commit
1994f62827
|
@ -11,7 +11,7 @@ export const OwnerRow = ({ ownerAddress }: { ownerAddress: string }): ReactEleme
|
||||||
return (
|
return (
|
||||||
<EthHashInfo
|
<EthHashInfo
|
||||||
hash={ownerAddress}
|
hash={ownerAddress}
|
||||||
name={ownerName}
|
name={ownerName === 'UNKNOWN' ? '' : ownerName}
|
||||||
showIdenticon
|
showIdenticon
|
||||||
showCopyBtn
|
showCopyBtn
|
||||||
explorerUrl={getExplorerInfo(ownerAddress)}
|
explorerUrl={getExplorerInfo(ownerAddress)}
|
||||||
|
|
Loading…
Reference in New Issue