Skip to content

Commit

Permalink
Minor story fixes (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
r100-stack authored Sep 17, 2024
1 parent cbd8aa1 commit b472a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/react-workshop/src/ComboBox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ export const MultipleSelect = () => {
multiple
value={selectedOptions}
onChange={(selected, event) => {
console.log(event.value + ' ' + event.type ?? '');
console.log(event.value + ' ' + event.type);
setSelectedOptions(selected);
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/react-workshop/src/SearchBox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Basic = () => {
export const BasicWithCustomItems = () => {
return (
<SearchBox>
<SearchBox.Button title='Search button' />
<SearchBox.Button label='Search button' />
<SearchBox.Input placeholder='Basic search with custom interactions' />
<Text
isMuted
Expand Down

0 comments on commit b472a61

Please sign in to comment.