diff --git a/app/soapbox/features/ui/components/user_panel.js b/app/soapbox/features/ui/components/user_panel.js index 411b9b70b..82415cd9d 100644 --- a/app/soapbox/features/ui/components/user_panel.js +++ b/app/soapbox/features/ui/components/user_panel.js @@ -56,21 +56,21 @@ class UserPanel extends ImmutablePureComponent {
- {account.get('statuses_count') &&
+ {account.get('statuses_count') >= 0 &&
{shortNumberFormat(account.get('statuses_count'))}
} - {account.get('followers_count') &&
+ {account.get('followers_count') >= 0 &&
{shortNumberFormat(account.get('followers_count'))}
} - {account.get('following_count') &&
+ {account.get('following_count') >= 0 &&
{shortNumberFormat(account.get('following_count'))}