Skip to content

Commit

Permalink
test: fix ControlChip condition mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
malangcat committed Jan 3, 2025
1 parent 1cf81f2 commit 0dfcfd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/stories/ControlChip.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ type Story = StoryObj<typeof meta>;

const conditionMap = {
checked: {
false: { disabled: false },
true: { disabled: true },
false: { checked: false },
true: { checked: true },
},
layout: {
withText: { layout: "withText", children: "Control Chip" },
Expand Down

0 comments on commit 0dfcfd0

Please sign in to comment.