Skip to content

Commit

Permalink
fix(combobox): use filterItems for items
Browse files Browse the repository at this point in the history
  • Loading branch information
tay1orjones committed Jun 19, 2024
1 parent 5559238 commit a8f9d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/ComboBox/ComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ const ComboBox = forwardRef(
setHighlightedIndex,
} = useCombobox({
...downshiftProps,
items,
items: filterItems(items, itemToString, inputValue),
inputValue: inputValue,
itemToString: (item) => {
return itemToString(item);
Expand Down

0 comments on commit a8f9d2e

Please sign in to comment.