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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);