File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,9 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
64
64
{ sectionListDocs . map ( section => {
65
65
const defaultItem = section . items [ 0 ] ;
66
66
return (
67
- < FooterLink to = { `/docs/${ defaultItem . id } .html` } >
67
+ < FooterLink
68
+ to = { `/docs/${ defaultItem . id } .html` }
69
+ key = { section . title } >
68
70
{ section . title }
69
71
</ FooterLink >
70
72
) ;
@@ -112,7 +114,9 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
112
114
< FooterNav layoutHasSidebar = { layoutHasSidebar } >
113
115
< MetaTitle onDark = { true } > Community</ MetaTitle >
114
116
{ sectionListCommunity . map ( section => (
115
- < FooterLink to = { `/community/${ section . items [ 0 ] . id } .html` } >
117
+ < FooterLink
118
+ to = { `/community/${ section . items [ 0 ] . id } .html` }
119
+ key = { section . title } >
116
120
{ section . title }
117
121
</ FooterLink >
118
122
) ) }
You can’t perform that action at this time.
0 commit comments