Fix key issue

This commit is contained in:
Eric Bailey
2025-01-18 18:18:28 -06:00
parent 29ef0d9422
commit 18a0998230
+7 -1
View File
@@ -193,10 +193,16 @@ function Feed() {
let vids =
data?.pages
.map(page => {
const items = []
const items: {
_reactKey: string
moderation: ModerationDecision
post: AppBskyFeedDefs.PostView
feedContext: string | undefined
}[] = []
for (const slice of page.slices) {
for (const i of slice.items) {
items.push({
_reactKey: i._reactKey,
moderation: i.moderation,
post: i.post,
feedContext: slice.feedContext,