Remove unnecessary nested span

This commit is contained in:
Willian Mitsuda 2021-10-30 21:54:05 -03:00
parent b770bb5fb5
commit 7708fa75e5
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ type AddressProps = {
const Address: React.FC<AddressProps> = ({ address }) => ( const Address: React.FC<AddressProps> = ({ address }) => (
<span className="font-address text-gray-400 truncate" title={address}> <span className="font-address text-gray-400 truncate" title={address}>
<span className="truncate">{address}</span> {address}
</span> </span>
); );