Skip to content

Commit

Permalink
chore: ts, lint, prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
thekidnamedkd committed Oct 31, 2024
1 parent cc65ab2 commit 502e76a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,6 @@ const getMultisigSettings = (minApprovals: number) => [
*/
export const MultiStage: Story = {
args: {
title: 'Voting',
description:
'The proposal must pass all governance stages to be accepted and potential onchain actions to execute.',
activeStage: '0',
className: 'max-w-[560px]',
},
Expand Down Expand Up @@ -183,8 +180,6 @@ export const MultiStage: Story = {
*/
export const SingleStage: Story = {
args: {
title: 'Voting',
description: 'The proposal must pass the voting to be accepted and potential onchain actions to execute.',
className: 'max-w-[560px]',
},
render: (args) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ type Story = StoryObj<typeof ProposalVoting.Container>;
/**
* Default usage example of the ProposalVoting.Container component.
*/
export const Default: Story = {
args: {
title: 'Proposal voting',
description: 'The proposal must pass the voting to be accepted and potential onchain actions to execute.',
},
};
export const Default: Story = {};

export default meta;
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { type IProposalVotingContainerProps, ProposalVotingContainer } from './p
describe('<ProposalVotingContainer /> component', () => {
const createTestComponent = (props?: Partial<IProposalVotingContainerProps>) => {
const completeProps: IProposalVotingContainerProps = {
title: '',
description: '',
...props,
};

Expand Down

0 comments on commit 502e76a

Please sign in to comment.