```
<button
type="button"
className="k-button -k-button-icon k-flat k-upload-action"
onClick={(e) => this.actualUploader.current.onRemove(el.uid)}
tabIndex="-1"
>
<span aria-label="Remove" title="Remove" className="k-icon k-delete k-i-x">
</span>
{/* remove (doesnt work yet) */}
</button>
```
I'm using a ref to access the 'Upload' react element and fire the onRemove method. My assumption is that it will interact with my removeURL using the DELETE method which I've specified. However, I can only get the image to disappear from the state, and no HTTP Request is fired. What can I do to get this HTTP method fired?