diff --git a/frontend/src/components/Layout.jsx b/frontend/src/components/Layout.jsx
index 93658d8..009501f 100644
--- a/frontend/src/components/Layout.jsx
+++ b/frontend/src/components/Layout.jsx
@@ -929,33 +929,36 @@ const Layout = ({ children }) => {
- {/* Page title - hidden on dashboard, hosts, repositories, and packages to give more space to search */}
+ {/* Page title - hidden on dashboard, hosts, repositories, packages, and host details to give more space to search */}
{!["/", "/hosts", "/repositories", "/packages"].includes(
location.pathname,
- ) && (
-
-
- {getPageTitle()}
-
-
- )}
+ ) &&
+ !location.pathname.startsWith("/hosts/") && (
+
+
+ {getPageTitle()}
+
+
+ )}
{/* Global Search Bar */}