diff --git a/src/Modules/Guilds/Hooks/useIsProposalCreationAllowed.tsx b/src/Modules/Guilds/Hooks/useIsProposalCreationAllowed.tsx index 7e19aaa01..332830c8e 100644 --- a/src/Modules/Guilds/Hooks/useIsProposalCreationAllowed.tsx +++ b/src/Modules/Guilds/Hooks/useIsProposalCreationAllowed.tsx @@ -14,7 +14,7 @@ const useIsProposalCreationAllowed = () => { }); const isProposalCreationAllowed = useMemo(() => { - if (!guildConfig || !votingPower) { + if (!guildConfig?.votingPowerForProposalCreation || !votingPower) { return false; } if (votingPower.gte(guildConfig.votingPowerForProposalCreation)) {