Skip to content

Commit

Permalink
Remove opening link in a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
kosserin committed Mar 28, 2024
1 parent e4e657b commit bb652b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Link/Link.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const StyledLink = styled.a`

const Link = ({ text, href }) => {
return (
<StyledLink href={href} target="_blank" rel="noreferrer">
<StyledLink href={href}>
<span className="style-h3">{text}</span>
<svg
width="16"
Expand Down

0 comments on commit bb652b3

Please sign in to comment.