The comment was specifying to add {...conform.input(fields.content)}, but since the form field is a textarea it ought to have been suggesting {...conform.textarea(fields.content)}.
This just updates the hint so that it shows the appropriate version for the form field type, and matches the code that the solution to the exercise uses.
The comment was specifying to add
{...conform.input(fields.content)}
, but since the form field is a textarea it ought to have been suggesting{...conform.textarea(fields.content)}
.This just updates the hint so that it shows the appropriate version for the form field type, and matches the code that the solution to the exercise uses.