diff --git a/src/components/layout/Navigation.tsx b/src/components/layout/Navigation.tsx index f2303e8f..d1152de6 100644 --- a/src/components/layout/Navigation.tsx +++ b/src/components/layout/Navigation.tsx @@ -9,6 +9,7 @@ import { LinksDropdown } from "@/components/LinksDropdown"; import { useNotifications } from "@/components/overlays/notificationsModal"; import { Lightbar } from "@/components/utils/Lightbar"; import { useAuth } from "@/hooks/auth/useAuth"; +import { useIsDesktopApp } from "@/hooks/useIsDesktopApp"; import { BlurEllipsis } from "@/pages/layouts/SubPageLayout"; import { conf } from "@/setup/config"; import { useBannerSize } from "@/stores/banner"; @@ -21,6 +22,7 @@ export interface NavigationProps { noLightbar?: boolean; doBackground?: boolean; clearBackground?: boolean; + hideBrandPill?: boolean; } export function Navigation(props: NavigationProps) { @@ -29,6 +31,11 @@ export function Navigation(props: NavigationProps) { const { loggedIn } = useAuth(); const [scrollPosition, setScrollPosition] = useState(0); const { openNotifications, getUnreadCount } = useNotifications(); + const isDesktopApp = useIsDesktopApp(); + + const handleDesktopSettings = () => { + window.dispatchEvent(new CustomEvent("pstream-desktop-settings")); + }; useEffect(() => { const handleScroll = () => { @@ -136,13 +143,15 @@ export function Navigation(props: NavigationProps) {