Add index to list

This commit is contained in:
Fred Carlsen
2018-11-28 18:25:49 +01:00
parent 850c441c70
commit 23bfad6c40

View File

@@ -112,7 +112,7 @@ export const Footer: React.StatelessComponent<FooterInterface> = ({}) => (
</Col>
<Col width="46%">
<Links>
{_.map(linkRows, (row, index) => <LinkRow heading={row.heading} links={row.links} />)}
{_.map(linkRows, (row, index) => <LinkRow key={index} heading={row.heading} links={row.links} />)}
</Links>
</Col>
</Inner>