Skip to content

Commit

Permalink
fix: signatory name input (#2681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Asmadek authored Nov 19, 2024
1 parent 21156d4 commit 6b59deb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export const SelectSignatories = () => {
<div className="flex flex-col gap-2">
{signatories.map((value, index) => (
<Signatory
key={`${value.name}-${value.address}`}
// TODO: Address and name maybe not unique by user input
key={value.address}
signatoryIndex={index}
isOwnAccount={index === 0}
signatoryName={value.name}
Expand Down

0 comments on commit 6b59deb

Please sign in to comment.