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 bfe1901 commit 46d15fbCopy full SHA for 46d15fb
src/SelectNext.tsx
@@ -160,7 +160,7 @@ function NonMemoizedNonForwardedSelect<T extends SelectProps.Option[]>(
160
},
161
...options
162
].map((option, index) => (
163
- <option value={option.value} key={`${option.value}-${index}`}>
+ <option {...(option as any)} key={`${option.value}-${index}`}>
164
{option.label}
165
</option>
166
))}
0 commit comments