You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great library! Functionally things are rendering great but I'm seeing errors and when I submit all my select (enum) options fail validation.
Cannot update a component (`HotReload`) while rendering a different component (`SelectField`). To locate the bad setState() call inside `SelectField`, follow the stack trace as described in https://react.dev/link/setstate-in-render
SelectField.tsx:14 A props object containing a "key" prop is being spread into JSX:
let props = {key: someKey, required: ..., error: ..., name: ..., onChange: ..., onBlur: ..., ref: ..., children: ...};
<Select {...props} />
React keys must be passed directly to JSX without using spread:
let props = {required: ..., error: ..., name: ..., onChange: ..., onBlur: ..., ref: ..., children: ...};
<Select key={someKey} {...props} />
Great library! Functionally things are rendering great but I'm seeing errors and when I submit all my select (enum) options fail validation.
my code is very simple.
Is this something I'm not setting up right or other?
Thanks!
The text was updated successfully, but these errors were encountered: