diff --git a/public/assets/css/default.css b/public/assets/css/default.css
index 32b8644b..7da3c592 100644
--- a/public/assets/css/default.css
+++ b/public/assets/css/default.css
@@ -213,3 +213,8 @@
.ql-editor {
max-height: 200px;
}
+
+/* Remove Table Header Top Line */
+thead tr {
+ border-top: 1px solid white;
+}
diff --git a/src/pages/Directory/Directory.jsx b/src/pages/Directory/Directory.jsx
index ff8457e2..eb348e10 100644
--- a/src/pages/Directory/Directory.jsx
+++ b/src/pages/Directory/Directory.jsx
@@ -326,26 +326,29 @@ const Directory = ({ IsPage = true, prefernceContacts }) => {
)}
-
-
-
+
+
{/* Messages when listView is false */}
{!listView && (
@@ -360,48 +363,55 @@ const Directory = ({ IsPage = true, prefernceContacts }) => {
)}
{/* Table view (listView === true) */}
+
{listView ? (
-
- {loading && (
-
-
- {" "}
- Loading... {" "}
- |
-
- )}
+
+
+
+ {loading && (
+
+
+ {" "}
+ Loading... {" "}
+ |
+
+ )}
- {!loading && contacts?.length === 0 && (
-
-
- No contact found
- |
-
- )}
+ {!loading && contacts?.length === 0 && (
+
+
+ No contact found
+ |
+
+ )}
- {!loading && currentItems.length === 0 && contacts?.length > 0 && (
-
-
- No matching contact found
- |
-
- )}
+ {!loading &&
+ currentItems.length === 0 &&
+ contacts?.length > 0 && (
+
+
+ No matching contact found
+ |
+
+ )}
- {!loading &&
- currentItems.map((contact) => (
-
- ))}
-
+ {!loading &&
+ currentItems.map((contact) => (
+
+ ))}
+
+
+
) : (
{!loading &&
diff --git a/src/pages/Directory/DirectoryPageHeader.jsx b/src/pages/Directory/DirectoryPageHeader.jsx
index c4a1e77a..7de25693 100644
--- a/src/pages/Directory/DirectoryPageHeader.jsx
+++ b/src/pages/Directory/DirectoryPageHeader.jsx
@@ -32,16 +32,16 @@ const DirectoryPageHeader = ({
setSearchText(e.target.value)}
style={{ width: "200px" }}
/>
-
+