I have added one feature around 1 month ago, which show progress of uploading file that time axios onUploadProgress is totally working fine, but now its not even get called when I am uploading file
code:
axios.post(`${process.env.REACT_APP_BEHOST}/user/upload`, formData, {
headers: {
'Authorization': `Bearer ${user.token}`
},
onUploadProgress: ({ loaded, total }) => {
setShowModal(true)
setProgress(Math.floor((loaded * 100) / total))
}
})
Please can someone Tell me whats wrong in this