We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac07ee8 commit 87fc971Copy full SHA for 87fc971
shared/common-adapters/emoji.native.tsx
@@ -22,7 +22,7 @@ const EmojiWrapper = React.memo(function EmojiWrapper(props: Props) {
22
style={Styles.collapseStyles([sizeStyle.get(size), props.style])} // Mobile emoji need to be smaller with Proxima Nova
23
allowFontScaling={props.allowFontScaling}
24
>
25
- {!!emojiIndexByName[emojiName] && emojiIndexByName[emojiName] + emojiVariantSuffix}
+ {emojiIndexByName[emojiName] ? emojiIndexByName[emojiName] + emojiVariantSuffix : emojiName}
26
</Text>
27
)
28
})
0 commit comments