Skip to content

Commit

Permalink
fix(web): do not copy addresses in SignerForm
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Jan 5, 2025
1 parent 1a4e706 commit c11849b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const SignerForm = ({ willExecute }: { willExecute?: boolean }) => {
>
{options?.map((owner) => (
<MenuItem key={owner} value={owner} disabled={!isOptionEnabled(owner)}>
<EthHashInfo address={owner} avatarSize={32} onlyName />
<EthHashInfo address={owner} avatarSize={32} onlyName copyAddress={false} />
{!isOptionEnabled(owner) && (
<Typography variant="caption" component="span" className={css.disabledPill}>
Already signed
Expand Down

0 comments on commit c11849b

Please sign in to comment.