Fix missing postAuthor
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user