Fix missing postAuthor

This commit is contained in:
Paul Frazee
2024-03-07 23:05:04 -08:00
parent 05f3be04b3
commit 6ac4b6be5c
+3
View File
@@ -298,6 +298,7 @@ let FeedItemInner = ({
moderation={moderation}
richText={richText}
postEmbed={post.embed}
postAuthor={post.author}
/>
<PostCtrls
post={post}
@@ -316,10 +317,12 @@ let PostContent = ({
moderation,
richText,
postEmbed,
postAuthor,
}: {
moderation: ModerationDecision
richText: RichTextAPI
postEmbed: AppBskyFeedDefs.PostView['embed']
postAuthor: AppBskyFeedDefs.PostView['author']
}): React.ReactNode => {
const pal = usePalette('default')
const {_} = useLingui()