Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Feb 1, 2024
1 parent 5584b51 commit 2be8a48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/OptionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,14 @@ function OptionRow({
<SubscriptAvatar
mainAvatar={option.icons[0]}
secondaryAvatar={option.icons[1]}
backgroundColor={(hovered && !optionIsFocused) ? hoveredBackgroundColor : subscriptColor}
backgroundColor={hovered && !optionIsFocused ? hoveredBackgroundColor : subscriptColor}
size={CONST.AVATAR_SIZE.DEFAULT}
/>
) : (
<MultipleAvatars
icons={option.icons}
size={CONST.AVATAR_SIZE.DEFAULT}
secondAvatarStyle={[StyleUtils.getBackgroundAndBorderStyle((hovered && !optionIsFocused) ? hoveredBackgroundColor : subscriptColor)]}
secondAvatarStyle={[StyleUtils.getBackgroundAndBorderStyle(hovered && !optionIsFocused ? hoveredBackgroundColor : subscriptColor)]}
shouldShowTooltip={showTitleTooltip && OptionsListUtils.shouldOptionShowTooltip(option)}
/>
))}
Expand Down

0 comments on commit 2be8a48

Please sign in to comment.