Mike Polowick

Results 1 comments of Mike Polowick

I've managed to get this to work with a custom `onKeyDown` handler: ```tsx { const validKeys = ["ArrowUp", "ArrowDown"]; let newIndex = 0; if (validKeys.includes(key) && selectRef.current) { const selectedItem...