Skip to content

Commit

Permalink
Merge pull request #33668 from paultsimura/fix/33657-mention-icon-blank
Browse files Browse the repository at this point in the history
fix: Fix remove the fill for non-icon mentions
  • Loading branch information
mountiny authored Dec 29, 2023
2 parents bcf6197 + 14a189e commit 972f7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MentionSuggestions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function MentionSuggestions({prefix, mentions, highlightedMentionIndex = 0, onSe
size={isIcon ? CONST.AVATAR_SIZE.MENTION_ICON : CONST.AVATAR_SIZE.SMALLER}
name={item.icons[0].name}
type={item.icons[0].type}
fill={theme.success}
fill={isIcon ? theme.success : undefined}
fallbackIcon={item.icons[0].fallbackIcon}
/>
</View>
Expand Down

0 comments on commit 972f7b4

Please sign in to comment.