You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Safari will block window.open() after await even if it is triggered by user interaction.
One workaround is open the window (const windowProxy = window.open(undefined, "_blank");) before any await call and set windowProxy.location after the await call.
The text was updated successfully, but these errors were encountered:
Safari will block window.open() after await even if it is triggered by user interaction.
One workaround is open the window (
const windowProxy = window.open(undefined, "_blank");
) before any await call and setwindowProxy.location
after theawait
call.The text was updated successfully, but these errors were encountered: