/* Copyright 2022-2024 New Vector Ltd. SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE in the repository root for full details. */ import { useEffect } from "react"; export function usePageTitle(title?: string): void { useEffect(() => { const productName = import.meta.env.VITE_PRODUCT_NAME || "Element Call"; document.title = title ? `${productName} | ${title}` : productName; }, [title]); }