From c47fa15c8462e133a4628344b94c1dc48432a755 Mon Sep 17 00:00:00 2001 From: Ruggero Cino Date: Tue, 31 Oct 2023 12:58:42 +0100 Subject: [PATCH] Update proposal.tsx --- src/pages/proposal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/proposal.tsx b/src/pages/proposal.tsx index 65e9f2f24e..e539a693a2 100644 --- a/src/pages/proposal.tsx +++ b/src/pages/proposal.tsx @@ -492,7 +492,7 @@ export const Proposal: React.FC = () => { votingSettings.votingMode === VotingMode.VOTE_REPLACEMENT; const votingDisabled = - (address != null && proposal?.status !== ProposalStatus.ACTIVE) || + proposal?.status !== ProposalStatus.ACTIVE || (isMultisigPlugin && voted) || (isTokenVotingPlugin && voted && !canRevote);