Skip to content

Commit

Permalink
fix typo (#1063)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidorko authored Oct 19, 2023
1 parent 0783344 commit 136e3a7
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 136e3a7

Please sign in to comment.