I did this ;
const uploader = FileTransferManager.init({ parallelUploadsLimit: 1 }, async event => {
console.debug('entered init');
console.debug('event outside if', event);
if (event.eventId) {
console.debug('event inside if', event);
The error appears on this line :
console.debug('event outside if', event);
Why am I receiving this error ?