(event: React.ChangeEvent<HTMLTextAreaElement>)
| 48 | }, []); |
| 49 | |
| 50 | const handleInput = (event: React.ChangeEvent<HTMLTextAreaElement>) => { |
| 51 | handleInputChange(event); |
| 52 | adjustHeight(); |
| 53 | }; |
| 54 | |
| 55 | const submitForm = (e?: React.FormEvent) => { |
| 56 | e?.preventDefault(); |
nothing calls this directly
no test coverage detected