We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7f3fa commit 787e787Copy full SHA for 787e787
1 file changed
src/components/shop/ui/Select.tsx
@@ -94,12 +94,13 @@ export function ShopSelect({
94
}
95
96
return (
97
- <div className={twMerge('relative', className)} onKeyDown={onKeyDown}>
+ <div className={twMerge('relative', className)}>
98
<button
99
ref={triggerRef}
100
type="button"
101
aria-haspopup="listbox"
102
aria-expanded={open}
103
+ onKeyDown={onKeyDown}
104
onClick={() => {
105
setOpen((o) => !o)
106
if (!open) setFocused(value ?? options[0]?.value ?? null)
0 commit comments