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
I am working on an extension and I am unable to persist my data in redux. Every time I close the browser or refresh the extension, all my previous gets lost and I have to start all over again.
The text was updated successfully, but these errors were encountered:
I believe that by default, the data is stored in memory only and only shared across the extension parts using message communication. If you want to persist across reloads, you need to make your reducer store to extension local or session storage on change, and then check that and load it out on initialisation.
I am working on an extension and I am unable to persist my data in redux. Every time I close the browser or refresh the extension, all my previous gets lost and I have to start all over again.
The text was updated successfully, but these errors were encountered: