Better spacing solution

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