diff options
Diffstat (limited to 'src/view/com/posts/FeedItem.tsx')
-rw-r--r-- | src/view/com/posts/FeedItem.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index f7db827bd..96ecae1b5 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -177,15 +177,10 @@ export const FeedItem = observer(function ({ </View> <View style={styles.layoutContent}> <PostMeta - itemHref={itemHref} - itemTitle={itemTitle} authorHref={authorHref} authorHandle={item.post.author.handle} authorDisplayName={item.post.author.displayName} timestamp={item.post.indexedAt} - isAuthor={item.post.author.did === store.me.did} - onCopyPostText={onCopyPostText} - onDeletePost={onDeletePost} /> {!isChild && replyHref !== '' && ( <View style={[s.flexRow, s.mb2, {alignItems: 'center'}]}> @@ -226,6 +221,9 @@ export const FeedItem = observer(function ({ )} <PostEmbeds embed={item.post.embed} style={styles.postEmbeds} /> <PostCtrls + itemHref={itemHref} + itemTitle={itemTitle} + isAuthor={item.post.author.did === store.me.did} replyCount={item.post.replyCount} repostCount={item.post.repostCount} upvoteCount={item.post.upvoteCount} @@ -234,6 +232,8 @@ export const FeedItem = observer(function ({ onPressReply={onPressReply} onPressToggleRepost={onPressToggleRepost} onPressToggleUpvote={onPressToggleUpvote} + onCopyPostText={onCopyPostText} + onDeletePost={onDeletePost} /> </View> </View> |