Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
Fix storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito committed Apr 19, 2023
1 parent 2dfbdaa commit c095acb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/orders/DetailsTable/DetailsTable.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ const order = {
txHash: '0x489d8fd1efd43394c7c2b26216f36f1ab49b8d67623047e0fcb60efa2a2c420b',
}

const defaultProps: Props = { order, areTradesLoading: false, showFillsButton: false, viewFills: () => null }
const defaultProps: Props = {
order,
areTradesLoading: false,
showFillsButton: false,
viewFills: () => null,
isPriceInverted: false,
invertPrice: () => null,
}

export const DefaultFillOrKill = Template.bind({})
DefaultFillOrKill.args = { ...defaultProps }
Expand Down

0 comments on commit c095acb

Please sign in to comment.