Skip to content

Commit

Permalink
chore: remove no referrer from external link
Browse files Browse the repository at this point in the history
  • Loading branch information
segunadebayo committed Mar 14, 2022
1 parent 1221216 commit b9df2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/layout/src/link.tsx
Expand Up @@ -37,7 +37,7 @@ export const Link = forwardRef<LinkProps, "a">((props, ref) => {
return (
<chakra.a
target={isExternal ? "_blank" : undefined}
rel={isExternal ? "noopener noreferrer" : undefined}
rel={isExternal ? "noopener" : undefined}
ref={ref}
className={cx("chakra-link", className)}
{...rest}
Expand Down

0 comments on commit b9df2e6

Please sign in to comment.