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
The operation is insecure.
OidcClientSettingsStore@https://localhost:3000/static/js/bundle.js:174029:59
UserManagerSettingsStore@https://localhost:3000/static/js/bundle.js:175436:10
UserManager@https://localhost:3000/static/js/bundle.js:175849:49
After digging a bit, it seems default security values of Safari prevent the use of both local storage and session storage :
> localStorage.length
< SecurityError: The operation is insecure.
> sessionStorage.length;
< SecurityError: The operation is insecure.
The text was updated successfully, but these errors were encountered:
Hi, this issue present in all browsers. If users turn off persistent data store for the website, browser will throw this error every time you try to access localStorage or sessionStorage:
Latest version, with Safari 18.2
After digging a bit, it seems default security values of Safari prevent the use of both local storage and session storage :
The text was updated successfully, but these errors were encountered: