about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/state/models/me.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/state/models/me.ts b/src/state/models/me.ts
index f41b07a6a..9591acb80 100644
--- a/src/state/models/me.ts
+++ b/src/state/models/me.ts
@@ -95,6 +95,10 @@ export class MeModel {
           this.avatar = ''
         }
       })
+      this.mainFeed = new FeedModel(this.rootStore, 'home', {
+        algorithm: 'reverse-chronological',
+      })
+      this.notifications = new NotificationsViewModel(this.rootStore, {})
       this.memberships = new MembershipsViewModel(this.rootStore, {
         actor: this.did,
       })