Skip to content

Commit

Permalink
Fixes isGaslessVoting settings
Browse files Browse the repository at this point in the history
  • Loading branch information
emmdim committed Oct 30, 2023
1 parent bd3b001 commit 11d6510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/aragon-sdk/queries/use-voting-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function isGaslessVotingSettings(
settings: SupportedVotingSettings | undefined | null
): settings is GaslessPluginVotingSettings {
if (!settings || Object.keys(settings).length === 0) return false;
return 'onlyCommitteeProposalCreation' in settings;
return 'onlyMultisigProposalCreation' in settings;
}

/**
Expand Down

0 comments on commit 11d6510

Please sign in to comment.