diff options
author | Eric Bailey <git@esb.lol> | 2025-06-14 12:47:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-14 20:47:16 +0300 |
commit | 2c8dd12281afb52f27fea809f16c2dbea94ce493 (patch) | |
tree | 125db7e7f9c35d9e83af52d752103b1477215060 /src/screens/PostThread/components | |
parent | 9fb2a63466fda3389a5b6715ca109a14933db9c8 (diff) | |
download | voidsky-2c8dd12281afb52f27fea809f16c2dbea94ce493.tar.zst |
Use post shadow (#8491)
Diffstat (limited to 'src/screens/PostThread/components')
-rw-r--r-- | src/screens/PostThread/components/ThreadItemAnchor.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/PostThread/components/ThreadItemAnchor.tsx b/src/screens/PostThread/components/ThreadItemAnchor.tsx index f6bc5871c..907fb9a7b 100644 --- a/src/screens/PostThread/components/ThreadItemAnchor.tsx +++ b/src/screens/PostThread/components/ThreadItemAnchor.tsx @@ -180,7 +180,7 @@ const ThreadItemAnchorInner = memo(function ThreadItemAnchorInner({ const {currentAccount, hasSession} = useSession() const feedFeedback = useFeedFeedback(postSource?.feed, hasSession) - const post = item.value.post + const post = postShadow const record = item.value.post.record const moderation = item.moderation const authorShadow = useProfileShadow(post.author) |