Don't render ComposerPills when unnecessary (#5975)
This commit is contained in:
@@ -872,6 +872,12 @@ function ComposerPills({
|
|||||||
const media = draft.embed.media
|
const media = draft.embed.media
|
||||||
const hasMedia = media?.type === 'images' || media?.type === 'video'
|
const hasMedia = media?.type === 'images' || media?.type === 'video'
|
||||||
const hasLink = !!draft.embed.link
|
const hasLink = !!draft.embed.link
|
||||||
|
|
||||||
|
// Don't render anything if no pills are going to be displayed
|
||||||
|
if (isReply && !hasMedia && !hasLink) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Animated.View
|
<Animated.View
|
||||||
style={[a.flex_row, a.p_sm, t.atoms.bg, bottomBarAnimatedStyle]}>
|
style={[a.flex_row, a.p_sm, t.atoms.bg, bottomBarAnimatedStyle]}>
|
||||||
|
|||||||
Reference in New Issue
Block a user