Skip to content

Commit

Permalink
Merge pull request #42162 from samilabud/emoji_misaligned_focus_mode_…
Browse files Browse the repository at this point in the history
…41367

Fixed emoji misaligned in focus mode
  • Loading branch information
tgolen authored May 16, 2024
2 parents 3a35c1c + 5c32859 commit 94d3a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LHNOptionsList/OptionRowLHN.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function OptionRowLHN({reportID, isFocused = false, onSelectRow = () => {}, opti
const textUnreadStyle = optionItem?.isUnread && optionItem.notificationPreference !== CONST.REPORT.NOTIFICATION_PREFERENCE.MUTE ? [textStyle, styles.sidebarLinkTextBold] : [textStyle];
const displayNameStyle = [styles.optionDisplayName, styles.optionDisplayNameCompact, styles.pre, textUnreadStyle, style];
const alternateTextStyle = isInFocusMode
? [textStyle, styles.optionAlternateText, styles.textLabelSupporting, styles.optionAlternateTextCompact, styles.ml2, style]
? [textStyle, styles.textLabelSupporting, styles.optionAlternateTextCompact, styles.ml2, style]
: [textStyle, styles.optionAlternateText, styles.textLabelSupporting, style];

const contentContainerStyles = isInFocusMode ? [styles.flex1, styles.flexRow, styles.overflowHidden, StyleUtils.getCompactContentContainerStyles()] : [styles.flex1];
Expand Down

0 comments on commit 94d3a5c

Please sign in to comment.