diff --git a/frontend/src/navbar.tsx b/frontend/src/navbar.tsx index 2c74e5f6..02114db3 100644 --- a/frontend/src/navbar.tsx +++ b/frontend/src/navbar.tsx @@ -72,7 +72,7 @@ export function Navbar(props: NavBarProps) { ); // Set the page title const title = getTitle(); - useEffect(() => { document.title = title; }, [title]); + useEffect(() => { document.title = title || ''; }, [title]); return (