From dd0ec9d018d944a293b8f44e1b1d25cafa6d3db7 Mon Sep 17 00:00:00 2001 From: Pramod Mahajan Date: Tue, 27 May 2025 12:33:25 +0530 Subject: [PATCH] changed font-size --- .../Directory/CardViewDirectory.jsx | 61 ++++++++++--------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/src/components/Directory/CardViewDirectory.jsx b/src/components/Directory/CardViewDirectory.jsx index a7fe7d32..1dc16cec 100644 --- a/src/components/Directory/CardViewDirectory.jsx +++ b/src/components/Directory/CardViewDirectory.jsx @@ -30,7 +30,7 @@ const CardViewDirectory = ({ (contact?.name || "").trim().split(" ")[1]?.charAt(0) || "" } />{" "} -

{contact.name}

+ {contact.name}
@@ -55,20 +55,19 @@ const CardViewDirectory = ({ setSelectedContact(contact); setIsOpenModal(true); }} - > - - - Modify + + + Modify
  • IsDeleted(contact.id)} > - - Delete + + Delete
  • @@ -80,7 +79,7 @@ const CardViewDirectory = ({
  • -
  • +
  • {contact.organization}
  • @@ -96,52 +95,54 @@ const CardViewDirectory = ({ >
    {contact.contactEmails[0] && ( -
      +
      • - +
      • -
      • +
      • {contact.contactEmails[0]?.emailAddress}
      )} {contact.contactPhones[0] && ( -
        -
      • +
          +
        • -
        • +
        • {contact.contactPhones[0]?.phoneNumber}
        )}
          -
        • - +
        • + +
        • -
        • +
        • {contact.contactCategory.name}
        -
          - {contact.bucketIds.map((bucketId) => ( - -
        • - -
        • -
        • - {getBucketNameById(buckets, bucketId)} -
        • -
          - ))} -
        +
          + {contact.bucketIds?.map((bucketId) => ( +
        • + + + + {getBucketNameById(buckets, bucketId)} + + +
        • + ))} +
        +
    );