diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-06 15:46:44 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-06 15:46:44 -0600 |
commit | 20de7782ba349b0249acc79b1b64841cbe414e45 (patch) | |
tree | e15b946fb87bee87bb89720ddd344fcd3e349c45 | |
parent | bb6bd905c20473d153fd5f43f77f534fa0eb6409 (diff) | |
download | voidsky-20de7782ba349b0249acc79b1b64841cbe414e45.tar.zst |
Fix typo
-rw-r--r-- | src/state/models/me.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts index 0f3acc70b..ea35cd028 100644 --- a/src/state/models/me.ts +++ b/src/state/models/me.ts @@ -99,15 +99,15 @@ export class MeModel { this.mainFeed.clear() await this.follows.fetch().catch(e => { this.rootStore.log.error('Failed to load my follows', e) - }), - await Promise.all([ - this.mainFeed.setup().catch(e => { - this.rootStore.log.error('Failed to setup main feed model', e) - }), - this.notifications.setup().catch(e => { - this.rootStore.log.error('Failed to setup notifications model', e) - }), - ]) + }) + await Promise.all([ + this.mainFeed.setup().catch(e => { + this.rootStore.log.error('Failed to setup main feed model', e) + }), + this.notifications.setup().catch(e => { + this.rootStore.log.error('Failed to setup notifications model', e) + }), + ]) this.rootStore.emitSessionLoaded() } else { this.clear() |