Skip to content

Commit

Permalink
fix(APP-2916): Proposal creation requirements are not in the correct …
Browse files Browse the repository at this point in the history
…part of the DAO creation flow (#1395)
  • Loading branch information
Barukimang authored Aug 8, 2024
1 parent 06ea7af commit aa2187a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/containers/configureCommunity/proposalCreation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {useWatch} from 'react-hook-form';
import React from 'react';
import {MultisigEligibility} from '../../components/multisigEligibility';
import {SelectEligibility} from '../../components/selectEligibility';

export const ProposalCreation = () => {
Expand All @@ -12,6 +13,7 @@ export const ProposalCreation = () => {

return (
<div>
{membership === 'multisig' && <MultisigEligibility />}
{membership === 'token' && isAllowedToConfigureVotingEligibility && (
<SelectEligibility />
)}
Expand Down

0 comments on commit aa2187a

Please sign in to comment.