diff --git a/src/components/Directory/CardViewDirectory.jsx b/src/components/Directory/CardViewDirectory.jsx
index 519d1b7f..9ac982c6 100644
--- a/src/components/Directory/CardViewDirectory.jsx
+++ b/src/components/Directory/CardViewDirectory.jsx
@@ -94,14 +94,15 @@ const CardViewDirectory = ({
-
- -
-
-
- -
- {contact.organization}
-
-
+
+ -
+
+
+ -
+ {contact.organization}
+
+
+
- {contact.contactEmails[0] && (
-
- -
-
-
- -
- {contact.contactEmails[0]?.emailAddress}
-
-
- )}
+ {contact.contactEmails[0] && (
+
+ -
+
+
+ -
+ {contact.contactEmails[0].emailAddress}
+
+
+)}
+
{contact.contactPhones[0] && (
diff --git a/src/components/Directory/ProfileContactDirectory.jsx b/src/components/Directory/ProfileContactDirectory.jsx
index 274b0d22..8494f2c6 100644
--- a/src/components/Directory/ProfileContactDirectory.jsx
+++ b/src/components/Directory/ProfileContactDirectory.jsx
@@ -58,23 +58,22 @@ const ProfileContactDirectory = ({ contact, setOpen_contact, closeModal }) => {
-
-
+
+
{contactProfile.contactEmails.map((email, idx) => (
- -
-
- {email.emailAddress}
+
-
+
+
+ {email.emailAddress}
+
handleCopy(email.emailAddress, idx)}
>
@@ -103,33 +102,28 @@ const ProfileContactDirectory = ({ contact, setOpen_contact, closeModal }) => {
)}
{contactProfile?.createdAt && (
-
+
-
-
+
-
{moment(contactProfile.createdAt).format("MMMM, DD YYYY")}
-
)}
-
{contactProfile?.address && (
-
-
- -
-
- {contactProfile?.address}
-
-
+
+
+
+ {contactProfile.address}
+
)}
@@ -141,13 +135,12 @@ const ProfileContactDirectory = ({ contact, setOpen_contact, closeModal }) => {
-
-
- -
-
- {contactProfile.organization}
-
-
+
+
+
+
+ {contactProfile.organization}
+
)}