diff --git a/src/Header.tsx b/src/Header.tsx index c79953c..8974bcc 100644 --- a/src/Header.tsx +++ b/src/Header.tsx @@ -24,9 +24,7 @@ import styles from "./Header.module.css"; import { useModalTriggerState } from "./Modal"; import { Button } from "./button"; import { ReactComponent as Logo } from "./icons/Logo.svg"; -import { ReactComponent as VideoIcon } from "./icons/Video.svg"; import { Subtitle } from "./typography/Typography"; -import { Avatar, Size } from "./Avatar"; import { IncompatibleVersionModal } from "./IncompatibleVersionModal"; interface HeaderProps extends HTMLAttributes { @@ -116,21 +114,11 @@ export function HeaderLogo({ className }: HeaderLogoProps) { interface RoomHeaderInfo { roomName: string; - avatarUrl: string | null; } -export function RoomHeaderInfo({ roomName, avatarUrl }: RoomHeaderInfo) { +export function RoomHeaderInfo({ roomName }: RoomHeaderInfo) { return ( <> -
- - -
{roomName} diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 471bfa4..3872ec2 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -35,7 +35,6 @@ import { PosthogAnalytics } from "../analytics/PosthogAnalytics"; import { useProfile } from "../profile/useProfile"; import { UserChoices } from "../livekit/useLiveKit"; import { findDeviceByName } from "../media-utils"; -import { useRoomAvatar } from "./useRoomAvatar"; declare global { interface Window { @@ -82,14 +81,12 @@ export function GroupCallView({ }, [groupCall]); const { displayName, avatarUrl } = useProfile(client); - const roomAvatarUrl = useRoomAvatar(groupCall.room); const matrixInfo: MatrixInfo = { displayName, avatarUrl, roomName: groupCall.room.name, roomIdOrAlias, - roomAvatarUrl, }; useEffect(() => { diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index a8a171b..ee5cee9 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -395,10 +395,7 @@ export function InCallView({ {!hideHeader && maximisedParticipant === null && (
- + - + diff --git a/src/room/VideoPreview.tsx b/src/room/VideoPreview.tsx index ed31f6e..6c7cbf4 100644 --- a/src/room/VideoPreview.tsx +++ b/src/room/VideoPreview.tsx @@ -35,7 +35,6 @@ export type MatrixInfo = { avatarUrl: string; roomName: string; roomIdOrAlias: string; - roomAvatarUrl: string | null; }; interface Props {