(e)
| 18 | }); |
| 19 | |
| 20 | const handleKeyDown = (e) => { |
| 21 | if (e.key === "Enter") { |
| 22 | e.preventDefault(); |
| 23 | handleClick(); |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | const onChange = (e) => { |
| 28 | setProfile({ ...profile, [e.target.name]: e.target.value }); |
nothing calls this directly
no test coverage detected