fix: wallet save

This commit is contained in:
2024-01-05 20:54:34 +00:00
parent 40912bc979
commit 39f4ee9c2b

View File

@ -262,8 +262,10 @@ export class WalletStore extends ExternalStore<WalletStoreSnapshot> {
if (activeConfig) { if (activeConfig) {
activeConfig.data = JSON.stringify(data); activeConfig.data = JSON.stringify(data);
} }
this.save();
} else {
this.notifyChange();
} }
this.notifyChange();
} }
} }