I am embedding my app within a Jabber custom tab and I am not able to open links in an external web browser.
The link just opens in the current tab, whereas I want it to open Chrome/Edge etc.
In my code I do have `_blank` in the `window.open()` call but that does not seem to make a difference. The link opens as expected when clicked within a Jabber chat, but not from my custom tab:
window.open(route, '_blank')?.focus();
Any ideas?