epicweb-dev / web-forms

Learn the primary mechanism for interactivity on the web.
https://www.epicweb.dev/workshops/professional-web-forms
Other
199 stars 61 forks source link

Fix conform comment for textarea field #18

Closed dawnmist closed 1 year ago

dawnmist commented 1 year ago

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.