aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/website/ts/@next/components/footer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/footer.tsx b/packages/website/ts/@next/components/footer.tsx
index cf64d6d38..155cdcb30 100644
--- a/packages/website/ts/@next/components/footer.tsx
+++ b/packages/website/ts/@next/components/footer.tsx
@@ -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>