Skip to content

Commit 93484a6

Browse files
committed
Change project sharing react link to a
1 parent 64ba989 commit 93484a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/projects/ProjectInfo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ const ProjectInfo = () => {
7575
{singleProjectData.ProjectInfo.SocialSharing.map(
7676
(social) => {
7777
return (
78-
<Link
78+
<a
7979
key={social.id}
80-
to={social.url}
80+
href={social.url}
8181
target="__blank"
8282
aria-label="Share Project"
8383
className="bg-ternary-light dark:bg-ternary-dark text-gray-400 hover:text-primary-dark dark:hover:text-primary-light p-2 rounded-lg shadow-sm"
8484
>
8585
<span className="text-lg lg:text-2xl">
8686
{social.icon}
8787
</span>
88-
</Link>
88+
</a>
8989
);
9090
}
9191
)}

0 commit comments

Comments
 (0)