Skip to content

Commit

Permalink
fix: do not copy address on wallet button (#3098)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Jan 15, 2024
1 parent bd254c4 commit 79cce62
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/welcome/WelcomeLogin/WalletLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ const WalletLogin = ({ onLogin }: { onLogin: () => void }) => {
Continue with {wallet.label}
</Typography>
{wallet.address && (
<EthHashInfo address={wallet.address} shortAddress avatarSize={16} showName={false} />
<EthHashInfo
address={wallet.address}
shortAddress
avatarSize={16}
showName={false}
copyAddress={false}
/>
)}
</Box>
{wallet.icon && (
Expand Down

0 comments on commit 79cce62

Please sign in to comment.