Remove unused callState prop from <CallingLobby>

This commit is contained in:
Evan Hahn 2020-10-13 17:19:37 -05:00 committed by Evan Hahn
parent a7c87dd119
commit 48e8cd0138
2 changed files with 0 additions and 3 deletions

View file

@ -83,7 +83,6 @@ export const CallManager = ({
<CallingLobby <CallingLobby
availableCameras={availableCameras} availableCameras={availableCameras}
callDetails={callDetails} callDetails={callDetails}
callState={callState}
hasLocalAudio={hasLocalAudio} hasLocalAudio={hasLocalAudio}
hasLocalVideo={hasLocalVideo} hasLocalVideo={hasLocalVideo}
i18n={i18n} i18n={i18n}

View file

@ -5,7 +5,6 @@ import {
SetLocalPreviewType, SetLocalPreviewType,
SetLocalVideoType, SetLocalVideoType,
} from '../state/ducks/calling'; } from '../state/ducks/calling';
import { CallState } from '../types/Calling';
import { import {
CallingButton, CallingButton,
CallingButtonType, CallingButtonType,
@ -17,7 +16,6 @@ import { LocalizerType } from '../types/Util';
export type PropsType = { export type PropsType = {
availableCameras: Array<MediaDeviceInfo>; availableCameras: Array<MediaDeviceInfo>;
callDetails: CallDetailsType; callDetails: CallDetailsType;
callState?: CallState;
hasLocalAudio: boolean; hasLocalAudio: boolean;
hasLocalVideo: boolean; hasLocalVideo: boolean;
i18n: LocalizerType; i18n: LocalizerType;