Skip to content

Commit

Permalink
style: fixed display name coming twice on profile page (#1889)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakshesh14 committed Aug 16, 2023
1 parent b24622e commit f849712
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/app/components/profile/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ export const ProfileSidebar = () => {
</div>
<div className="px-5">
<div className="mt-[38px]">
<h4 className="text-lg font-semibold">{userProjectsData.user_data.display_name}</h4>
<h4 className="text-lg font-semibold">
{userProjectsData.user_data.first_name} {userProjectsData.user_data.last_name}
</h4>
<h6 className="text-custom-text-200 text-sm">
{userProjectsData.user_data.display_name}
({userProjectsData.user_data.display_name})
</h6>
</div>
<div className="mt-6 space-y-5">
Expand Down

0 comments on commit f849712

Please sign in to comment.