Skip to content

Commit c7b159b

Browse files
committed
fix: diff
1 parent 5a9e4d3 commit c7b159b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react/src/combobox/input/ComboboxInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export const ComboboxInput = React.forwardRef(function ComboboxInput(
197197
const trimmed = nextVal.trim();
198198
if (trimmed !== '') {
199199
store.state.setOpen(true, createBaseUIEventDetails('none', event.nativeEvent));
200-
if (!(selectionMode === 'none' && autoHighlight)) {
200+
if (!autoHighlight) {
201201
store.state.setIndices({
202202
activeIndex: null,
203203
selectedIndex: null,

0 commit comments

Comments
 (0)