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} moderation={moderation}
richText={richText} richText={richText}
postEmbed={post.embed} postEmbed={post.embed}
postAuthor={post.author}
/> />
<PostCtrls <PostCtrls
post={post} post={post}
@@ -316,10 +317,12 @@ let PostContent = ({
moderation, moderation,
richText, richText,
postEmbed, postEmbed,
postAuthor,
}: { }: {
moderation: ModerationDecision moderation: ModerationDecision
richText: RichTextAPI richText: RichTextAPI
postEmbed: AppBskyFeedDefs.PostView['embed'] postEmbed: AppBskyFeedDefs.PostView['embed']
postAuthor: AppBskyFeedDefs.PostView['author']
}): React.ReactNode => { }): React.ReactNode => {
const pal = usePalette('default') const pal = usePalette('default')
const {_} = useLingui() const {_} = useLingui()