Skip to content

Commit

Permalink
fixes passing input to textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
agnlez committed Mar 5, 2025
1 parent a1ccd07 commit 22ac800
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ export default function ProjectDetailsStep() {
</VisibilityLabel>
<FieldRFF<ProjectSchema['name']> name="description">
{({ input }) => (
<Textarea placeholder="Type the description here" onChange={input.onChange} required />
<Textarea
placeholder="Type the description here"
{...input}
onChange={input.onChange}
required
/>
)}
</FieldRFF>
</div>
Expand Down

0 comments on commit 22ac800

Please sign in to comment.