From 934adc1ff554d709fe0f5b8d69c5745832781409 Mon Sep 17 00:00:00 2001 From: Georgia Monahan Date: Tue, 18 Jul 2023 13:13:40 +0100 Subject: [PATCH] Fix emoji line height for native --- src/styles/StyleUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/StyleUtils.js b/src/styles/StyleUtils.js index 1ea5ce964d09..c8449d16d176 100644 --- a/src/styles/StyleUtils.js +++ b/src/styles/StyleUtils.js @@ -1116,13 +1116,13 @@ function getEmojiReactionBubbleTextStyle(isContextMenu = false) { if (isContextMenu) { return { fontSize: 17, - lineHeight: 28, + lineHeight: 24, }; } return { fontSize: 15, - lineHeight: 24, + lineHeight: 22, }; }