Fix spacing below text-only posts

This commit is contained in:
Eric Bailey
2024-03-13 15:25:47 -05:00
parent 65b2b451a7
commit 2d0a65e835
+9 -9
View File
@@ -294,14 +294,12 @@ let FeedItemInner = ({
</View> </View>
)} )}
<LabelsOnMyPost post={post} /> <LabelsOnMyPost post={post} />
<View style={[a.pb_sm]}> <PostContent
<PostContent moderation={moderation}
moderation={moderation} richText={richText}
richText={richText} postEmbed={post.embed}
postEmbed={post.embed} postAuthor={post.author}
postAuthor={post.author} />
/>
</View>
<PostCtrls <PostCtrls
post={post} post={post}
record={record} record={record}
@@ -364,7 +362,9 @@ let PostContent = ({
/> />
) : undefined} ) : undefined}
{postEmbed ? ( {postEmbed ? (
<PostEmbeds embed={postEmbed} moderation={moderation} /> <View style={[a.pb_sm]}>
<PostEmbeds embed={postEmbed} moderation={moderation} />
</View>
) : null} ) : null}
</ContentHider> </ContentHider>
) )