diff --git a/packages/react/src/components/ComboBox/ComboBox.tsx b/packages/react/src/components/ComboBox/ComboBox.tsx index fce8a4d16421..e42336c8f093 100644 --- a/packages/react/src/components/ComboBox/ComboBox.tsx +++ b/packages/react/src/components/ComboBox/ComboBox.tsx @@ -553,7 +553,7 @@ const ComboBox = forwardRef( setHighlightedIndex, } = useCombobox({ ...downshiftProps, - items, + items: filterItems(items, itemToString, inputValue), inputValue: inputValue, itemToString: (item) => { return itemToString(item);