From c32d4953485640d253fa06deb9a19c5886ef45fd Mon Sep 17 00:00:00 2001 From: Jon Schwartz Date: Mon, 24 Apr 2023 13:19:25 -0700 Subject: [PATCH] Allow ability to remove yourself as a signer --- components/RemoveSigner/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/RemoveSigner/index.tsx b/components/RemoveSigner/index.tsx index 2629ccd1..7c1dac18 100644 --- a/components/RemoveSigner/index.tsx +++ b/components/RemoveSigner/index.tsx @@ -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]