Bluesky app fork with some witchin' additions 💫

Use consistent index for reading last item (#4817)

authored by danabra.mov and committed by

GitHub 9bd83936 4af6bcb1

+2 -2
+2 -2
src/view/com/posts/FeedSlice.tsx
··· 56 56 record={slice.items[last].record} 57 57 reason={slice.items[last].reason} 58 58 feedContext={slice.items[last].feedContext} 59 - parentAuthor={slice.items[2].parentAuthor} 59 + parentAuthor={slice.items[last].parentAuthor} 60 60 showReplyTo={false} 61 61 moderation={slice.items[last].moderation} 62 62 isThreadParent={isThreadParentAt(slice.items, last)} 63 63 isThreadChild={isThreadChildAt(slice.items, last)} 64 - isParentBlocked={slice.items[2].isParentBlocked} 64 + isParentBlocked={slice.items[last].isParentBlocked} 65 65 isThreadLastChild 66 66 /> 67 67 </>