From 89dc125e36556092ae6fd89394e7127a45ef4a60 Mon Sep 17 00:00:00 2001 From: Adithya Menon R Date: Sun, 4 Jan 2026 02:13:54 +0530 Subject: [PATCH 1/2] fix: fixed wording for claimed issue --- app/components/profile-components/profileCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/profile-components/profileCard.tsx b/app/components/profile-components/profileCard.tsx index 6638d9d..86a3cd6 100644 --- a/app/components/profile-components/profileCard.tsx +++ b/app/components/profile-components/profileCard.tsx @@ -446,7 +446,7 @@ const ProfileCard = ({ profile, loading }: ProfileProps) => { - Pending Issues + Claimed Issues From 8252903a01e03c28fca580ee524e53f5cdf4278e Mon Sep 17 00:00:00 2001 From: Adithya Menon R Date: Sun, 4 Jan 2026 02:18:01 +0530 Subject: [PATCH 2/2] fix: fixed bug in leaderboard click if no gh linked --- app/components/dashboard-components/leaderboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/dashboard-components/leaderboard.tsx b/app/components/dashboard-components/leaderboard.tsx index ba9c502..6701b5f 100644 --- a/app/components/dashboard-components/leaderboard.tsx +++ b/app/components/dashboard-components/leaderboard.tsx @@ -325,7 +325,7 @@ const Leaderboard = ({ user }: { user: AuthUser | null }) => { onClick={() => handleUserClick(data.username)} aria-label={`View profile of ${data.fullName || data.username}`} className={ - user?.email + user?.email && user?.githubUsername ? `my-1 flex items-center rounded-xl bg-white/10 px-3 py-2 text-gray-800 backdrop-blur-md cursor-pointer transition-all duration-200 hover:bg-white/20 hover:shadow-md hover:scale-[0.98] active:scale-[0.98]