fix broken universe switching logic

This commit is contained in:
2023-08-27 17:53:11 +02:00
parent 2b5bbdcd56
commit 3cd115c488
2 changed files with 5 additions and 13 deletions

View File

@ -62,6 +62,10 @@ export class UserAPI {
_deleteUniverseFromInterface = (universe: string) => {
delete this.app.universes[universe];
this.app.settings.saveApplicationToLocalStorage(
this.app.universes,
this.app.settings
);
this.app.openBuffersModal();
}