(filename)
| 126 | }; |
| 127 | |
| 128 | const handleDownload = async (filename) => { |
| 129 | try { |
| 130 | await downloadDocument(filename); |
| 131 | } catch (err) { |
| 132 | setAlert({ type: 'error', message: err.message }); |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | const handleDrop = (e) => { |
| 137 | e.preventDefault(); |
nothing calls this directly
no test coverage detected