From f10f26f1e47166b4ff62d33a5da7a1f62379e71d Mon Sep 17 00:00:00 2001 From: Kartik Sharma Date: Mon, 15 Sep 2025 16:37:25 +0530 Subject: [PATCH] Remove Extra Line Below "No Contact Found" Message in Directory --- src/components/Directory/ListViewContact.jsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/Directory/ListViewContact.jsx b/src/components/Directory/ListViewContact.jsx index b772aa46..9f9b26d1 100644 --- a/src/components/Directory/ListViewContact.jsx +++ b/src/components/Directory/ListViewContact.jsx @@ -103,7 +103,7 @@ const ListViewContact = ({ data, Pagination }) => { id="horizontal-example" >
- +
{contactList?.map((col) => ( @@ -164,7 +164,7 @@ const ListViewContact = ({ data, Pagination }) => { isPending && activeContact === row.id ? "bx-loader-alt bx-spin" : "bx-recycle" - } me-1 text-primary cursor-pointer`} + } me-1 text-primary cursor-pointer`} title="Restore" onClick={() => { setActiveContact(row.id); @@ -176,19 +176,20 @@ const ListViewContact = ({ data, Pagination }) => { )) ) : ( - + + )}
No contacts found
{Pagination && ( -
+
{Pagination}
)} -- 2.43.0