Skip to content

Commit

Permalink
Allow ability to remove yourself as a signer
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwartz10 committed Apr 24, 2023
1 parent 2fc5bf8 commit c32d495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/RemoveSigner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RemoveSigner = ({
// Get signer addresses without current wallet owner
const signers = useMemo(
() =>
Signers.filter((signer) => !isAddrEqual(wallet, signer)).map(
Signers.map(
(signer) => signer.robust || signer.id
),
[Signers, wallet]
Expand Down

0 comments on commit c32d495

Please sign in to comment.