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 9cc69dc commit 41a31d3Copy full SHA for 41a31d3
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