Calling web url works fine
Browser.open({ url: ‘https://www.example.com’ });
but
const htmlContent = `
<html>
<body>
<h1>Hello World</h1>
</body>
</html>
`;
const blob = new Blob([htmlContent], { type: 'text/html' });
const url = URL.createObjectURL(blob);
Browser.open({ url });
crashes the app