diff --git a/src/room/LobbyView.tsx b/src/room/LobbyView.tsx index f4fef5fe9..48a477635 100644 --- a/src/room/LobbyView.tsx +++ b/src/room/LobbyView.tsx @@ -51,11 +51,7 @@ import { CallFooter, type FooterSnapshot } from "../components/CallFooter"; import { useCallViewKeyboardShortcuts } from "../useCallViewKeyboardShortcuts"; import { createLobbyFooterViewModel } from "../components/CallFooterViewModel"; import { type ViewModel } from "../state/ViewModel"; -import { - useAppBarHidden, - useAppBarPrimaryButtonIconKind, - useAppBarTitle, -} from "../AppBar"; +import { useAppBarPrimaryButtonIconKind } from "../AppBar"; interface Props { client: MatrixClient; @@ -92,8 +88,6 @@ export const LobbyView: FC = ({ const { t } = useTranslation(); usePageTitle(matrixInfo.roomName); - useAppBarHidden(false); - useAppBarTitle(matrixInfo.roomName); useAppBarPrimaryButtonIconKind("back"); const audioEnabled = useBehavior(muteStates.audio.enabled$); const videoEnabled = useBehavior(muteStates.video.enabled$);