view all saved algos in settings

This commit is contained in:
Ansh Nanda 2023-05-13 12:25:06 -07:00
parent 047024a5ac
commit 8948118d5c
5 changed files with 91 additions and 17 deletions

View file

@ -110,7 +110,7 @@ export class SavedFeedsModel {
this.loadMoreCursor = res.data.cursor
this.hasMore = !!this.loadMoreCursor
for (const f of res.data.feeds) {
this.feeds.push(new AlgoItemModel(f))
this.feeds.push(new AlgoItemModel(this.rootStore, f))
}
}
}