Skip to content

Commit

Permalink
fix: add _parent to social media links
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnwesson committed Nov 14, 2023
1 parent bbbf41c commit f669d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/profile/ProfilePluginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ProfilePluginPage extends React.Component {
}

const SocialLink = ({ url, name, platform }) => (
<a href={url} className="font-weight-bold">
<a href={url} className="font-weight-bold" target="_parent">

Check warning on line 157 in src/profile/ProfilePluginPage.jsx

View check run for this annotation

Codecov / codecov/patch

src/profile/ProfilePluginPage.jsx#L157

Added line #L157 was not covered by tests
<FontAwesomeIcon className="mr-2" icon={platformDisplayInfo[platform].icon} />
{name}
</a>
Expand Down

0 comments on commit f669d3c

Please sign in to comment.