Bullet to middle dot

This commit is contained in:
Minseo Lee
2024-01-12 09:21:55 +09:00
parent 254e034bdc
commit af5b1c65c0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -706,7 +706,7 @@ function ExpandedPostDetails({
<Text style={pal.textLight}>{niceDate(post.indexedAt)}</Text> <Text style={pal.textLight}>{niceDate(post.indexedAt)}</Text>
{needsTranslation && ( {needsTranslation && (
<> <>
<Text style={[pal.textLight, s.ml5, s.mr5]}></Text> <Text style={pal.textLight}> &middot; </Text>
<Link href={translatorUrl} title={_(msg`Translate`)}> <Link href={translatorUrl} title={_(msg`Translate`)}>
<Text style={pal.link}> <Text style={pal.link}>
<Trans>Translate</Trans> <Trans>Translate</Trans>
+1 -1
View File
@@ -92,7 +92,7 @@ let DrawerProfileCard = ({
<Text type="xl-medium" style={pal.text}> <Text type="xl-medium" style={pal.text}>
{formatCountShortOnly(profile?.followersCount ?? 0)} {formatCountShortOnly(profile?.followersCount ?? 0)}
</Text>{' '} </Text>{' '}
{pluralize(profile?.followersCount || 0, 'follower')} {' '} {pluralize(profile?.followersCount || 0, 'follower')} &middot;{' '}
<Text type="xl-medium" style={pal.text}> <Text type="xl-medium" style={pal.text}>
{formatCountShortOnly(profile?.followsCount ?? 0)} {formatCountShortOnly(profile?.followsCount ?? 0)}
</Text>{' '} </Text>{' '}