Fixed issue with errorMessage not showing in ScrollableList

• Fixed:
- issue with errorMessage not showing in ScrollableList
This commit is contained in:
mgabdev
2020-06-10 16:05:15 -04:00
parent f9a087ca14
commit 8f423f1341
5 changed files with 5 additions and 5 deletions

View File

@@ -91,7 +91,7 @@ class Following extends ImmutablePureComponent {
emptyMessage={intl.formatMessage(messages.empty)}
>
{
!!accountIds && accountIds.map((id) => (
accountIds && accountIds.map((id) => (
<Account key={`following-${id}`} id={id} compact withBio />
))
}