Is there a way to customize the filename in createObjectURL of the blob? Currently, it generates a URL like this:
<URL>/bfefe410-8d9c-4883-86c5-d76c50a24a1d
const data = window.URL.createObjectURL(newBlob);
const pdfWindow = window.open();
pdfWindow.location.href = data;
I'm not looking to download the file (solution can be found on StackOverflow), instead, I want it to open in a new tab.