fix: avoid writing mobx data to localforage

This commit is contained in:
Paul 2021-12-24 12:06:11 +00:00
parent 189d0b5ff9
commit 5029d0ac86

View file

@ -104,7 +104,10 @@ export default class State {
*/ */
async save() { async save() {
for (const [id, store] of this.persistent) { for (const [id, store] of this.persistent) {
await localforage.setItem(id, store.toJSON()); await localforage.setItem(
id,
JSON.parse(stringify(store.toJSON())),
);
} }
} }