From ae94995a4d2c9c871b611740a212021c3fd5a7a1 Mon Sep 17 00:00:00 2001 From: Adam Gall Date: Sun, 19 May 2024 16:43:31 -0400 Subject: [PATCH] Fix order of returned "getProposalVotes" properties --- src/utils/azorius.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/azorius.ts b/src/utils/azorius.ts index 1910921bf5..1f9003510b 100644 --- a/src/utils/azorius.ts +++ b/src/utils/azorius.ts @@ -70,7 +70,7 @@ export const getProposalVotesSummary = async ( } if (erc20Strategy !== undefined) { - const [yesVotes, noVotes, abstainVotes] = await erc20Strategy.read.getProposalVotes([ + const [noVotes, yesVotes, abstainVotes] = await erc20Strategy.read.getProposalVotes([ Number(proposalId), ]);