Skip to content

Commit

Permalink
Avoid warning in FooterActions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiberiuichim committed Feb 20, 2023
1 parent cdc692b commit 0fe73d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/Footer/FooterActions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const FooterActions = (props) => {
<div className="copyright">
{props.copyright &&
props.copyright.map((copyright, index) => (
<>
<React.Fragment key={index}>
<a
href={copyright.link}
key={index}
Expand All @@ -38,7 +38,7 @@ const FooterActions = (props) => {
>
{copyright.title}
</a>
</>
</React.Fragment>
))}
</div>
</Grid.Column>
Expand Down

0 comments on commit 0fe73d7

Please sign in to comment.