{!!accountAddress && (
-
-
-
-
+
+
)}
diff --git a/apps/evm/src/containers/Layout/Header/TopBar/Breadcrumbs/index.tsx b/apps/evm/src/containers/Layout/Header/TopBar/Breadcrumbs/index.tsx
index f51af2fb47..d2587e3ce9 100644
--- a/apps/evm/src/containers/Layout/Header/TopBar/Breadcrumbs/index.tsx
+++ b/apps/evm/src/containers/Layout/Header/TopBar/Breadcrumbs/index.tsx
@@ -3,7 +3,6 @@ import { type Params, matchPath, useLocation } from 'react-router-dom';
import { Username } from 'components';
import { Subdirectory, routes } from 'constants/routing';
-import { CopyAddressButton } from 'containers/CopyAddressButton';
import { Link } from 'containers/Link';
import { useTranslation } from 'libs/translations';
import { cn } from 'utilities';
@@ -104,10 +103,9 @@ export const Breadcrumbs: React.FC = () => {
address={params.address}
showProvider={false}
showTooltip={false}
+ showCopyAddress
ellipseBreakpoint="xxl"
/>
-
- {
}
);
break;
diff --git a/apps/evm/src/libs/translations/translations/en.json b/apps/evm/src/libs/translations/translations/en.json
index eff65735f6..2ebc91601d 100644
--- a/apps/evm/src/libs/translations/translations/en.json
+++ b/apps/evm/src/libs/translations/translations/en.json
@@ -307,7 +307,10 @@
},
"interactive": {
"copy": {
- "address": "Address"
+ "address": {
+ "name": "Address",
+ "tooltip": "Copy Address"
+ }
},
"copyToClipboard": "{{name}} copied to clipboard"
},
diff --git a/apps/evm/src/pages/Proposal/VoteSummary/index.tsx b/apps/evm/src/pages/Proposal/VoteSummary/index.tsx
index c4cf0b6e64..1e445a3a05 100644
--- a/apps/evm/src/pages/Proposal/VoteSummary/index.tsx
+++ b/apps/evm/src/pages/Proposal/VoteSummary/index.tsx
@@ -85,12 +85,16 @@ const VoteSummary = ({
{voters.map(({ address, votesMantissa, reason }) => (
-
-
-
+
+ {({ innerContent }) => (
+
+ {innerContent}
+
+ )}
+
{reason && (
diff --git a/apps/evm/src/pages/VoterLeaderboard/LeaderboardTable/index.tsx b/apps/evm/src/pages/VoterLeaderboard/LeaderboardTable/index.tsx
index e1948acc36..ef7d60ebe0 100644
--- a/apps/evm/src/pages/VoterLeaderboard/LeaderboardTable/index.tsx
+++ b/apps/evm/src/pages/VoterLeaderboard/LeaderboardTable/index.tsx
@@ -39,12 +39,16 @@ export const LeaderboardTable: React.FC = ({
renderCell: (voter, rowIndex) => (
{rowIndex + 1 + offset}
-
-
-
+
+ {({ innerContent }) => (
+
+ {innerContent}
+
+ )}
+
),
},