diff --git a/src/components/views/voip/CallPreview.tsx b/src/components/views/voip/CallPreview.tsx index 37ac621116..2aa3080e60 100644 --- a/src/components/views/voip/CallPreview.tsx +++ b/src/components/views/voip/CallPreview.tsx @@ -28,7 +28,7 @@ import { CallEvent, CallState, MatrixCall } from 'matrix-js-sdk/src/webrtc/call' import { MatrixClientPeg } from '../../../MatrixClientPeg'; import { replaceableComponent } from "../../../utils/replaceableComponent"; import { EventSubscription } from 'fbemitter'; -import { PictureInPictureDragger } from './PictureInPictureDragger'; +import PictureInPictureDragger from './PictureInPictureDragger'; const SHOW_CALL_IN_STATES = [ CallState.Connected, diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 851095d55a..d3371b8456 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -42,7 +42,7 @@ import DesktopCapturerSourcePicker from "../elements/DesktopCapturerSourcePicker import Modal from '../../../Modal'; import { SDPStreamMetadataPurpose } from 'matrix-js-sdk/src/webrtc/callEventTypes'; import CallViewSidebar from './CallViewSidebar'; -import { CallViewHeader } from './CallView/CallViewHeader'; +import CallViewHeader from './CallView/CallViewHeader'; import AccessibleTooltipButton from "../elements/AccessibleTooltipButton"; import { Alignment } from "../elements/Tooltip"; diff --git a/src/components/views/voip/CallView/CallViewHeader.tsx b/src/components/views/voip/CallView/CallViewHeader.tsx index 8145c47871..d9a49e5010 100644 --- a/src/components/views/voip/CallView/CallViewHeader.tsx +++ b/src/components/views/voip/CallView/CallViewHeader.tsx @@ -94,7 +94,7 @@ const CallTypeIcon: React.FC<{ type: CallType }> = ({ type }) => { return
; }; -export const CallViewHeader: React.FC