Skip to content

Commit

Permalink
feat(medium): fixing story and unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
manoncarbonnel authored and dpellier committed Nov 10, 2023
1 parent 7c64f8c commit 5cf52ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ class OdsMediumMock extends OsdsMedium {
Object.assign(this, attribute);
}

controller: OdsMediumController = jest.fn() as unknown as OdsMediumController;
odsRemoveClick!: EventEmitter<void>;
removeClicked = jest.fn();
beforeInit = jest.fn();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ const storyParams = {
height: {
category: 'Size',
defaultValue: DEFAULT_ATTRIBUTE.height,
control: { type: 'input' }
control: { type: 'number' },
},
width: {
category: 'Size',
defaultValue: 700,
control: { type: 'input' }
control: { type: 'number' },
},
};

Expand Down

0 comments on commit 5cf52ad

Please sign in to comment.