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