Oleg Shcherbakov
Oleg Shcherbakov
I fixed this problem by replacing useEffect cleanup function in useList.ts file to: `return () => { off(ref) };`
You can add onBlur event to "Listbox.Options". I achieved the desired behavior this way: ```typescript { event.preventDefault(); }}> {selectedPerson.name} {people.map((person) => ( {person.name} ))} ```
I'm facing the same problem