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

@@ -78,7 +78,7 @@ class FollowRequests extends ImmutablePureComponent {
emptyMessage={<FormattedMessage id='empty_column.follow_requests' defaultMessage="You don't have any follow requests yet. When you receive one, it will show up here." />}
>
{
!!accountIds && accountIds.map(id =>
accountIds && accountIds.map((id) =>
<AccountAuthorize key={id} id={id} />
)
}