We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51bd35c commit c53eeccCopy full SHA for c53eecc
web/src/components/CasesDisplay/index.tsx
@@ -1,7 +1,7 @@
1
import React from "react";
2
import styled from "styled-components";
3
4
-import { Link, useLocation } from "react-router-dom";
+import { useLocation } from "react-router-dom";
5
6
import ArrowIcon from "svgs/icons/arrow.svg";
7
web/src/layout/Footer/index.tsx
@@ -61,7 +61,7 @@ const SecuredByKleros: React.FC = () => (
61
const SocialMedia = () => (
62
<StyledSocialMedia>
63
{Object.values(socialmedia).map((site, i) => (
64
- <ExternalLink key={i} to={site.url} target="_blank" rel="noreferrer">
+ <ExternalLink key={site.url} to={site.url} target="_blank" rel="noreferrer">
65
<LightButton Icon={site.icon} text="" />
66
</ExternalLink>
67
))}
0 commit comments