Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
sidorko authored Oct 18, 2023
1 parent 64b8c58 commit 5345e71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Select/__stories__/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ export const EXAMPLE_USER_CONTROL = `const [value, setValue] = React.useState<st
})}
</Button>
);
}},
onUpdate={(nextValue) => setValue1(nextValue)}
}}
onUpdate={(nextValue) => setValue(nextValue)}
>
<Select.Option value="val1" content="Value1" />
<Select.Option value="val2" content="Value2" />
<Select.Option value="val3" content="\\" />
<Select.Option value="val3" content="Value3" />
<Select.Option value="val4" content="Value4" />
</Select>
`;
Expand Down

0 comments on commit 5345e71

Please sign in to comment.