Update src/app/features/call/CallView.tsx

Co-authored-by: Gimle Larpes <97182804+GimleLarpes@users.noreply.github.com>
This commit is contained in:
Jaggar
2025-06-18 17:26:57 -05:00
committed by GitHub
parent 6b3c9dfddc
commit c675131802

View File

@@ -32,7 +32,7 @@ type OriginalStyles = {
border?: string;
};
export function CallView({ room, eventId }: { room: Room; eventId?: string }) {
export function CallView({ room }: { room: Room }) {
const primaryIframeRef = useContext(PrimaryRefContext);
const backupIframeRef = useContext(BackupRefContext);
const iframeHostRef = useRef<HTMLDivElement>(null);