(e: ChangeEvent<HTMLInputElement>)
| 83 | }; |
| 84 | |
| 85 | const onUploadImage = (e: ChangeEvent<HTMLInputElement>) => { |
| 86 | const file = e.target.files?.[0]; |
| 87 | if (!file) { |
| 88 | return; |
| 89 | } |
| 90 | appStore.uploadImage(uploadId.current, file); |
| 91 | }; |
| 92 | |
| 93 | const handleDragEnd = (event: DragEndEvent) => { |
| 94 | const {active, over} = event; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…