Skip to content

Commit 24247a0

Browse files
committed
fix: Add target attribute to footer links to allow opening of links in new tab
1 parent 74d8c7d commit 24247a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/FooterLink/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface FooterLinkProps {
88
const FooterLink = (props: FooterLinkProps) => {
99
const { uri, label } = props;
1010
return (
11-
<a className={classes.footerLink} href={uri}>
11+
<a target='__blank' rel='noreferrer' className={classes.footerLink} href={uri}>
1212
{label}
1313
</a>
1414
);

0 commit comments

Comments
 (0)