Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr2github committed Oct 25, 2023
1 parent a044bbb commit 3a37e85
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/containers/setupVotingForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ import {
isMultisigVotingSettings,
isTokenVotingSettings,
} from 'services/aragon-sdk/queries/use-voting-settings';
import {ProposalFormData, StringIndexed} from 'utils/types';
import {
ProposalFormData,
StringIndexed,
SupportedVotingSettings,
} from 'utils/types';
import SetupMultisigVotingForm from './multisig';
import SetupTokenVotingForm from './tokenVoting';
import {VotingSettings} from '@aragon/sdk-client';

export type Props = {
pluginSettings: VotingSettings;
pluginSettings: SupportedVotingSettings;
};

const SetupVotingForm: React.FC<Props> = ({pluginSettings}) => {
Expand Down

0 comments on commit 3a37e85

Please sign in to comment.