From ffbe5752acc162e8da11a911ac54e4723d531c00 Mon Sep 17 00:00:00 2001 From: Dakshesh Jain Date: Wed, 16 Aug 2023 18:15:43 +0530 Subject: [PATCH] style: fixed display name coming twice on profile page --- apps/app/components/profile/sidebar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/app/components/profile/sidebar.tsx b/apps/app/components/profile/sidebar.tsx index cf91b5150c7..d49058c677a 100644 --- a/apps/app/components/profile/sidebar.tsx +++ b/apps/app/components/profile/sidebar.tsx @@ -105,9 +105,11 @@ export const ProfileSidebar = () => {
-

{userProjectsData.user_data.display_name}

+

+ {userProjectsData.user_data.first_name} {userProjectsData.user_data.last_name} +

- {userProjectsData.user_data.display_name} + ({userProjectsData.user_data.display_name})