diff --git a/src/components/VoteOptions.tsx b/src/components/VoteOptions.tsx index 4a27a45..44b730f 100644 --- a/src/components/VoteOptions.tsx +++ b/src/components/VoteOptions.tsx @@ -47,7 +47,10 @@ export const VoteOptions: FC<{ if (canRelinquishVote(choice.index)) { try { setCurrVote(choice.index); - await relinquishVote({ choice: choice.index }); + await relinquishVote({ + choice: choice.index, + onInstructions: onInstructions(provider), + }); toast("Vote relinquished"); } catch (e: any) { if (!(e instanceof WalletSignTransactionError)) {