I got a warning problem in the create New Issue page,
<div className="max-w-lg">
{error && (
<Callout.Root color="red" className="mb-3">
<Callout.Text>{error}</Callout.Text>
</Callout.Root>
)}
<form className="space-y-3" onSubmit={handleSubmit(sendData)}>
<TextField.Root>
<TextField.Input placeholder="Title" {...register("title")} />
</TextField.Root>
{errors.title && (
<Text color="red" as="p">
{errors.title.message}
</Text>
)}
<Controller
name="description"
control={control}
render={({ field }) => (
<SimpleMDE placeholder="Description" {...field} />
)}
/>
{errors.description && (
<Text color="red" as="p">
{errors.description.message}
</Text>
)}
<Button type="submit">Submit New Issue</Button>
</form>
</div>
seems like the problem is with the component, a ref problem, has anyone encountered this problem and can help me to fix it?