diff --git a/src/app/proposals/hooks/useVotingPower.ts b/src/app/proposals/hooks/useVotingPower.ts index 28a367bb..4aeb30e9 100644 --- a/src/app/proposals/hooks/useVotingPower.ts +++ b/src/app/proposals/hooks/useVotingPower.ts @@ -44,7 +44,7 @@ export const useVotingPower = () => { return { isLoading: false, votingPower: formatUnits(balance, decimals), - canCreateProposal: balance >= threshold, + canCreateProposal: totalVotingPower >= threshold, threshold: formatUnits(threshold, decimals), totalVotingPower: formatUnits(totalVotingPower, decimals), }