This commit is contained in:
parent
9e51a6d54e
commit
fde85684c0
1 changed files with 7 additions and 1 deletions
|
@ -37,8 +37,14 @@ const FollowerCount: React.FC<{ accountId: string }> = ({ accountId }) => {
|
||||||
|
|
||||||
if (!account) return null;
|
if (!account) return null;
|
||||||
|
|
||||||
|
const isHide = account.other_settings.hide_followers_count;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ShortNumber value={account.followers_count} renderer={FollowersCounter} />
|
<ShortNumber
|
||||||
|
value={account.followers_count}
|
||||||
|
renderer={FollowersCounter}
|
||||||
|
isHide={isHide}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue