From 119cb67b00237401b73cc51fbd96e164c894a313 Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Sat, 30 Oct 2021 22:00:03 -0300 Subject: [PATCH] Remove unnecessary nested span --- src/components/AddressLink.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/AddressLink.tsx b/src/components/AddressLink.tsx index 4b6f99e..8353457 100644 --- a/src/components/AddressLink.tsx +++ b/src/components/AddressLink.tsx @@ -17,10 +17,9 @@ const AddressLink: React.FC = ({ dontOverrideColors ? "" : "text-link-blue hover:text-link-blue-hover" } font-address truncate`} to={`/address/${address}`} + title={text ?? address} > - - {text ?? address} - + {text ?? address} );