Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Safeguard posts from clobbered state (#3006)

authored by

dan and committed by
GitHub
603f3c0b 6bd68e53

+4
+2
src/view/com/post-thread/PostThreadItem.tsx
··· 94 94 if (richText && moderation) { 95 95 return ( 96 96 <PostThreadItemLoaded 97 + // Safeguard from clobbering per-post state below: 98 + key={postShadowed.uri} 97 99 post={postShadowed} 98 100 prevPost={prevPost} 99 101 nextPost={nextPost}
+2
src/view/com/posts/FeedItem.tsx
··· 70 70 if (richText && moderation) { 71 71 return ( 72 72 <FeedItemInner 73 + // Safeguard from clobbering per-post state below: 74 + key={postShadowed.uri} 73 75 post={postShadowed} 74 76 record={record} 75 77 reason={reason}