Skip to content

Commit

Permalink
I changed the <Link> tag provided by Chakra in the Repositories page …
Browse files Browse the repository at this point in the history
…to the <a> tag because it's not working on the hosted version for some reason
  • Loading branch information
SheIsBukki committed Apr 23, 2024
1 parent 27d8b89 commit cb9f5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/RepoPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const RepoPage = () => {
})}
</p>
<Button>
<Link to={repo.html_url}>View Soure Code on GitHub</Link>
<a href={repo.html_url}>View Soure Code on GitHub</a>
</Button>
<Button>
<Link to={repo.homepage}>Visit site</Link>
Expand Down

0 comments on commit cb9f5b7

Please sign in to comment.