(e: ChangeEvent<HTMLInputElement>)
| 82 | }; |
| 83 | |
| 84 | const handleFileInput = (e: ChangeEvent<HTMLInputElement>) => { |
| 85 | const file = e.target.files?.[0]; |
| 86 | if (file) { |
| 87 | handleFile(file); |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | const handleClick = () => { |
| 92 | fileInputRef.current?.click(); |
nothing calls this directly
no test coverage detected