diff --git a/frontend/src/components/Layout.jsx b/frontend/src/components/Layout.jsx index 6ee89db..93658d8 100644 --- a/frontend/src/components/Layout.jsx +++ b/frontend/src/components/Layout.jsx @@ -929,8 +929,10 @@ const Layout = ({ children }) => {
- {/* Page title - hidden on dashboard to give more space to search */} - {location.pathname !== "/" && ( + {/* Page title - hidden on dashboard, hosts, repositories, and packages to give more space to search */} + {!["/", "/hosts", "/repositories", "/packages"].includes( + location.pathname, + ) && (

{getPageTitle()} @@ -940,7 +942,7 @@ const Layout = ({ children }) => { {/* Global Search Bar */}