Skip to content

Commit

Permalink
Add key
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyEJohnson committed Apr 19, 2024
1 parent 9e23e36 commit 56a2d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const SocialIconMessage: React.FunctionComponent<{
function LinkList({children}: React.PropsWithChildren<{}>) {
return (
<Styled.LinkListWrapper>
{React.Children.toArray(children).map((c) => <li>{c}</li>)}
{React.Children.toArray(children).map((c, i) => <li key={i}>{c}</li>)}
</Styled.LinkListWrapper>
);
}
Expand Down

0 comments on commit 56a2d22

Please sign in to comment.