diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-03 14:18:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-03 14:18:44 -0700 |
commit | 445f976881429f54758569de69bc4bce3f88c60b (patch) | |
tree | a401152888af83c97ae91283c669d65c092424e8 /src/state/models/content/list.ts | |
parent | 691af26895bcc2077c062bc5dd3f3ad3381fa51a (diff) | |
download | voidsky-445f976881429f54758569de69bc4bce3f88c60b.tar.zst |
Improved list and feed errors (#1798)
* Fix error-state rendering of ProfileList * Unsave/unpin lists on delete * Improve handling of failing feedgens * Only show 'remove' btn on feed DNE
Diffstat (limited to 'src/state/models/content/list.ts')
-rw-r--r-- | src/state/models/content/list.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/models/content/list.ts b/src/state/models/content/list.ts index 0331f58bd..8fb9f4b5e 100644 --- a/src/state/models/content/list.ts +++ b/src/state/models/content/list.ts @@ -290,6 +290,7 @@ export class ListModel { }) } + /* dont await */ this.rootStore.preferences.removeSavedFeed(this.uri) this.rootStore.emitListDeleted(this.uri) } |