Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/dashboard-components/leaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion app/components/profile-components/profileCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ const ProfileCard = ({ profile, loading }: ProfileProps) => {
</span>
</span>
<span className="text-xs sm:text-sm text-gray-700 font-medium mt-0.5 sm:mt-1 text-center leading-tight">
Pending Issues
Claimed Issues
</span>
</div>
</div>
Expand Down