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>
)}
<LabelsOnMyPost post={post} />
<View style={[a.pb_sm]}>
<PostContent
moderation={moderation}
richText={richText}
postEmbed={post.embed}
postAuthor={post.author}
/>
</View>
<PostContent
moderation={moderation}
richText={richText}
postEmbed={post.embed}
postAuthor={post.author}
/>
<PostCtrls
post={post}
record={record}
@@ -364,7 +362,9 @@ let PostContent = ({
/>
) : undefined}
{postEmbed ? (
<PostEmbeds embed={postEmbed} moderation={moderation} />
<View style={[a.pb_sm]}>
<PostEmbeds embed={postEmbed} moderation={moderation} />
</View>
) : null}
</ContentHider>
)