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
Is your feature request related to a problem? Please describe.
Right now, the project has only BrowserStorageDisabledException. Considering the localStorage is only 5mb in most cases, it's realistic that it can be fully filled up in some projects. Knowing that exactly this is the error would be useful, as this info can be passed along to the user.
Describe the solution you'd like
A QuotaExceededException thrown if the local storage is full. The localStorage implementation in JavaScript throws a QuotaExceededError, which can be passed along.
Describe alternatives you've considered
If BrowserStorageDisabledException handles this, it should be renamed.
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Right now, the project has only BrowserStorageDisabledException. Considering the localStorage is only 5mb in most cases, it's realistic that it can be fully filled up in some projects. Knowing that exactly this is the error would be useful, as this info can be passed along to the user.
Describe the solution you'd like
A QuotaExceededException thrown if the local storage is full. The localStorage implementation in JavaScript throws a QuotaExceededError, which can be passed along.
Describe alternatives you've considered
If BrowserStorageDisabledException handles this, it should be renamed.
Additional context
The text was updated successfully, but these errors were encountered: