Hello, something happened with the last update because it stopped working the Input component with React-Hook-Form. They simply do not save or change the value of the input. Everything was normal in the previous version.
<Input
autoFocus
isRequired
radius="sm"
type="text"
label="Job Name"
placeholder="Job name"
variant="underlined"
size="sm"
className="basis-full"
errorMessage={errors.job_name && errors.job_name.message}
{...register('job_name')}
/>
This simply does not register any values anymore, Selects and other components do. If I stop using the NextUI Input component and change it to the native html component everything works fine. It happened to me after the last update. Thanks for your help!