Hello,
I’ve recently found a few more things that might help in debugging this issue.
This code (from this docs link) will fire anytime that there is an info event fired, and it should allow us to see if this is a UI issue or an internal state issue
uppy.on('info-visible', () => {
const info = uppy.getState().info
// info: {
// isHidden: false,
// type: 'error',
// message: 'Failed to upload',
// details: 'Error description'
// }
alert(`${info.message} ${info.details}`)
})
Let me know what results from this
- Andrew