diff --git a/src/pages/MentorDashboard.tsx b/src/pages/MentorDashboard.tsx index 5a7c420f..8eef2072 100644 --- a/src/pages/MentorDashboard.tsx +++ b/src/pages/MentorDashboard.tsx @@ -139,7 +139,7 @@ function MentorDashboard() {

Merged Pull Requests

-
+
{dashboard.projects .flatMap((project) => project.pulls) .map((pull, index) => ( @@ -148,8 +148,9 @@ function MentorDashboard() { href={pull} target="_blank" rel="noopener noreferrer" + className="text-primary hover:text-primary-600 hover:underline" > - {pull} + {pull.replace('https://github.com/', '').replace('pull/', '').replace(/\/\d/, '#')} ))}