diff --git a/src/apps/officer-web/Screens/Dashboard/Layout/DashboardLayout.tsx b/src/apps/officer-web/Screens/Dashboard/Layout/DashboardLayout.tsx index 82f90fe3..fd631df7 100644 --- a/src/apps/officer-web/Screens/Dashboard/Layout/DashboardLayout.tsx +++ b/src/apps/officer-web/Screens/Dashboard/Layout/DashboardLayout.tsx @@ -3,6 +3,7 @@ import { Background } from './Background'; import { Header } from './Header'; import { Dock, ALL_DOCK_ITEMS, DEFAULT_DOCK_PATHS } from './Dock'; import { useIsTouch } from './useIsTouch'; +import { usePageTitleSync } from '@/state/usePageTitle'; type DashboardLayoutProps = { children?: React.ReactNode; @@ -10,6 +11,7 @@ type DashboardLayoutProps = { export function DashboardLayout({ children }: DashboardLayoutProps) { const { items: visibleItems } = useDock(ALL_DOCK_ITEMS, DEFAULT_DOCK_PATHS); const isTouch = useIsTouch(); + usePageTitleSync(); return (