Skip to content

Commit

Permalink
Merge pull request #44675 from neonbhai/fix-emoji-styles
Browse files Browse the repository at this point in the history
  • Loading branch information
blimpich authored Jul 2, 2024
2 parents bedfeac + bf74aac commit 1795254
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
3 changes: 1 addition & 2 deletions src/components/Reactions/EmojiReactionBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import useStyleUtils from '@hooks/useStyleUtils';
import useThemeStyles from '@hooks/useThemeStyles';
import type {ReactionListEvent} from '@pages/home/ReportScreenContext';
import CONST from '@src/CONST';
import getEmojiReactionBubbleTextOffsetStyle from './getEmojiReactionBubbleTextOffsetStyle';

type EmojiReactionBubbleProps = {
/**
Expand Down Expand Up @@ -83,7 +82,7 @@ function EmojiReactionBubble(
accessible
dataSet={{[CONST.SELECTION_SCRAPER_HIDDEN_ELEMENT]: true}}
>
<Text style={[styles.emojiReactionBubbleText, StyleUtils.getEmojiReactionBubbleTextStyle(isContextMenu), getEmojiReactionBubbleTextOffsetStyle()]}>{emojiCodes.join('')}</Text>
<Text style={[styles.emojiReactionBubbleText, StyleUtils.getEmojiReactionBubbleTextStyle(isContextMenu)]}>{emojiCodes.join('')}</Text>
{count > 0 && <Text style={[styles.reactionCounterText, StyleUtils.getEmojiReactionCounterTextStyle(hasUserReacted)]}>{count}</Text>}
</PressableWithSecondaryInteraction>
);
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 1795254

Please sign in to comment.