diff --git a/packages/pl-fe/src/features/ui/components/profile-stats.tsx b/packages/pl-fe/src/features/ui/components/profile-stats.tsx index dbb7169d4..940b9a452 100644 --- a/packages/pl-fe/src/features/ui/components/profile-stats.tsx +++ b/packages/pl-fe/src/features/ui/components/profile-stats.tsx @@ -13,10 +13,11 @@ const messages = defineMessages({ followers: { id: 'account.followers', defaultMessage: 'Followers' }, follows: { id: 'account.follows', defaultMessage: 'Following' }, statuses: { id: 'account.statuses', defaultMessage: 'Statuses' }, + subscribers: { id: 'account.subscribers', defaultMessage: 'Subscribers' }, }); interface IProfileStats { - account: Pick | undefined; + account: Pick | undefined; onClickHandler?: React.MouseEventHandler; } @@ -67,6 +68,21 @@ const ProfileStats: React.FC = ({ account, onClickHandler }) => { + + {account.subscribers_count > 0 && ( + // + + {!demetricator && ( + + {shortNumberFormat(account.subscribers_count)} + + )} + + {intl.formatMessage(messages.subscribers)} + + + // + )} ); };