diff --git a/src/components/Directory/ProfileContactDirectory.jsx b/src/components/Directory/ProfileContactDirectory.jsx index 297c2904..62ca077f 100644 --- a/src/components/Directory/ProfileContactDirectory.jsx +++ b/src/components/Directory/ProfileContactDirectory.jsx @@ -84,15 +84,19 @@ const ProfileContactDirectory = ({ contact, setOpen_contact, closeModal }) => { {contactProfile?.contactPhones?.length > 0 && (
-
+

Phone :

    - {contactProfile?.contactPhones.map((phone, idx) => ( -
  • + {contactProfile.contactPhones.map((phone, idx) => ( +
  • {phone.phoneNumber} + {idx < contactProfile.contactPhones.length - 1 && ","}
  • ))}
@@ -100,6 +104,7 @@ const ProfileContactDirectory = ({ contact, setOpen_contact, closeModal }) => {
)} + {contactProfile?.createdAt && (