Skip to content

Commit fa6eeb0

Browse files
committed
fixup! fix(aria/combobox): highlighting edge cases
1 parent 1d7888d commit fa6eeb0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/aria/ui-patterns/combobox/combobox.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -339,14 +339,10 @@ export class ComboboxPattern<T extends ListItem<V>, V> {
339339
const inputEl = this.inputs.inputEl();
340340
const item = this.inputs.popupControls()?.getSelectedItem();
341341

342-
console.log('Highlighting item called with:', item?.searchTerm());
343-
344342
if (!inputEl || !item) {
345343
return;
346344
}
347345

348-
console.log('Highlighting item:', item.searchTerm());
349-
350346
const isHighlightable = item
351347
.searchTerm()
352348
.toLowerCase()

0 commit comments

Comments
 (0)