I'm trying to get my PWA to navigate to a new route (i.e /login) but every time I navigate, the standard Safari UI is exposed as a form of new page with a back button, refresh button and a "Done" button at the top.
Is there a way to navigate without exposing the native UI of Safari?
Here is what I've tried:
window.location.replace('/login')
window.open('/login', '_blank') //this one is same but different
window.location.href = '/login'
window.location.assign('/login', '_blank')