Abort ongoing request to upload the image is not handled
tried this
const abortController = new AbortController();
const signal = abortController.signal;
Pixelbin.upload(blob, presignedUrl, {
chunkSize: 2 * 1024 * 1024,
maxRetries: 1,
concurrency: 2,
signal: signal,
})
.
.
.
and called this abortController.abort();
whenever request needed to be cancelled