fix(mobx): use correct key for saving sync options

This commit is contained in:
Paul 2021-12-26 14:45:18 +00:00
parent d73772929d
commit 5737b32271

View file

@ -56,7 +56,7 @@ export default class Sync implements Store, Persistent<Data> {
toJSON() {
return {
enabled: [...this.disabled],
disabled: [...this.disabled],
revision: mapToRecord(this.revision),
};
}