Added missing check in List component for if items exist

• Added:
- missing check in List component for if items exist
This commit is contained in:
mgabdev 2021-01-13 12:05:29 -05:00
parent 1899ddfbfb
commit d01f610da3
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ class List extends ImmutablePureComponent {
placeholderCount={12}
>
{
!!items && itemsSize > 0 &&
items.map((item, i) => (
<ListItem
size={size}