Skip to content

Commit

Permalink
Fix remove the fill for non-icon mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
paultsimura committed Dec 27, 2023
1 parent 9e81447 commit 14a189e
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 14a189e

Please sign in to comment.