Added a missing key

This commit is contained in:
Jori Lallo
2017-09-11 00:17:07 -07:00
parent c44c25b53e
commit aa9478d878

View File

@@ -21,8 +21,8 @@ const ListPlaceHolder = ({ count }: Props) => {
transitionEnter
transitionLeave
>
{_.times(count || 2, () => (
<Item column auto>
{_.times(count || 2, index => (
<Item key={index} column auto>
<Mask header />
<Mask />
</Item>