I am using a <TextArea> inside a useForm and using setValues to update the text area value in specific situtations:
<Textarea
withAsterisk={true}
autosize={true}
disabled={isPending}
label={t('form.fields.instructions.label')}
key={form.key('instructions')}
{...form.getInputProps('instructions')}
/>
For some reason the autosize is not working + no scrollbar is shown (check attachted screenshot). I can go down using arrow down but's far from optimal. Any idea what I am doing wrong?