diff options
Diffstat (limited to 'src/view/com/composer')
-rw-r--r-- | src/view/com/composer/Composer.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 5750e7f18..efebd65fe 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -872,6 +872,12 @@ function ComposerPills({ const media = draft.embed.media const hasMedia = media?.type === 'images' || media?.type === 'video' const hasLink = !!draft.embed.link + + // Don't render anything if no pills are going to be displayed + if (isReply && !hasMedia && !hasLink) { + return null + } + return ( <Animated.View style={[a.flex_row, a.p_sm, t.atoms.bg, bottomBarAnimatedStyle]}> |