Hello @admin, Thank you for the suggestion. I tried your playground download example in both chrome and firefox. Both spin for a minute before stopping without downloading anything. In the end I used your suggestion and implemented my own download, by getting the report from blob to a File object. From there I uploaded to supabase storage.:
let blob = await report.toBlob();
let reportfile = await new File([blob], reportname + '.docx');
let reportURL = await FileManager.uploadFile(reportfile,"reports",reportname + '.docx');
Thanks again for all your help.