Using expo-auth-session
in the web, I want my user to authenticate. The user must remain on the current tab and not having a popup or another tab, how can I achieve that ?
The only way I found would be to use promptAsync({target: '_self'})
but target
property doesn't exist in the expo package and the default value used by window.open()
is _blank
which mean new tab.
Any idea ?