diff --git a/frontend/src/pages/AuditLog/AuditTable.tsx b/frontend/src/pages/AuditLog/AuditTable.tsx
deleted file mode 100644
index 018078b7..00000000
--- a/frontend/src/pages/AuditLog/AuditTable.tsx
+++ /dev/null
@@ -1,128 +0,0 @@
-import { IconDotsVertical, IconEdit, IconPower, IconSearch, IconTrash } from "@tabler/icons-react";
-import { intl } from "src/locale";
-
-export default function AuditTable() {
-	return (
-		
-			
-			
-				
-					
-						
-							
{intl.formatMessage({ id: "auditlog.title" })}
-						
-						
-					
-				
-				
-					
-						
-							
-								
-									| - | -										
-- | -										
-- | -										
-- | -										
-- | -										
-- | - | 
-							
-							
-								
-									| - -
-											
-										- | - --
-											 
-												blog.jc21.com
-											 
-											 Created: 20th September 2024 
-										 | http://172.17.0.1:3001- | Let's Encrypt- | Public- | -										Online
-- | -										
-											
-											
-										
-- | 
-							
-						
-					
-				
-			
-		
 							
{intl.formatMessage({ id: "auditlog.title" })}
 						
-						
 					
 				
 				
diff --git a/frontend/src/pages/Nginx/DeadHosts/TableWrapper.tsx b/frontend/src/pages/Nginx/DeadHosts/TableWrapper.tsx
index f627b650..3f0b1cde 100644
--- a/frontend/src/pages/Nginx/DeadHosts/TableWrapper.tsx
+++ b/frontend/src/pages/Nginx/DeadHosts/TableWrapper.tsx
@@ -12,6 +12,7 @@ import Table from "./Table";
 
 export default function TableWrapper() {
 	const queryClient = useQueryClient();
+	const [search, setSearch] = useState("");
 	const [deleteId, setDeleteId] = useState(0);
 	const [editId, setEditId] = useState(0 as number | "new");
 	const { isFetching, isLoading, isError, error, data } = useDeadHosts(["owner", "certificate"]);
@@ -36,6 +37,13 @@ export default function TableWrapper() {
 		showSuccess(intl.formatMessage({ id: enabled ? "notification.host-enabled" : "notification.host-disabled" }));
 	};
 
+	let filtered = null;
+	if (search && data) {
+		filtered = data?.filter((item) => {
+			return item.domainNames.some((domain: string) => domain.toLowerCase().includes(search));
+		});
+	}
+
 	return (
 		
 			
@@ -56,6 +64,7 @@ export default function TableWrapper() {
 										type="text"
 										className="form-control form-control-sm"
 										autoComplete="off"
+										onChange={(e: any) => setSearch(e.target.value.toLowerCase())}
 									/>