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 (
|
||||
<EthHashInfo
|
||||
hash={ownerAddress}
|
||||
name={ownerName}
|
||||
name={ownerName === 'UNKNOWN' ? '' : ownerName}
|
||||
showIdenticon
|
||||
showCopyBtn
|
||||
explorerUrl={getExplorerInfo(ownerAddress)}
|
||||
|
|
Loading…
Reference in New Issue