Fix title fallback

This commit is contained in:
Willian Mitsuda 2021-07-06 02:04:46 -03:00
parent 31d2983f94
commit 0d01cbef1d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const AddressLink: React.FC<AddressLinkProps> = ({ address, text }) => (
className="text-link-blue hover:text-link-blue-hover font-address truncate"
to={`/address/${address}`}
>
<p className="truncate" title={text}>
<p className="truncate" title={text ?? address}>
{text ?? address}
</p>
</NavLink>