diff options
Diffstat (limited to 'src/components/FeedCard.tsx')
-rw-r--r-- | src/components/FeedCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index f94692e5b..33905dacd 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -214,7 +214,7 @@ export function DescriptionPlaceholder() { export function Likes({count}: {count: number}) { const t = useTheme() return ( - <Text style={[a.text_sm, t.atoms.text_contrast_medium]}> + <Text style={[a.text_sm, t.atoms.text_contrast_medium, a.font_bold]}> <Trans> Liked by <Plural value={count || 0} one="# user" other="# users" /> </Trans> |