fix(pre-meeting) Hide invite button for JaaS

This commit is contained in:
hmuresan
2021-08-24 16:44:28 +03:00
parent 45e51c1e8c
commit b72ca4e973
5 changed files with 49 additions and 9 deletions

View File

@@ -37,7 +37,6 @@ type Props = {
videoTrack: ?Object
};
const buttons = [ 'microphone', 'camera', 'select-background' ];
/**
* This component is displayed before joining a meeting.
@@ -62,7 +61,7 @@ class PrejoinThirdParty extends Component<Props> {
className = { `prejoin-third-party ${className}` }
showDeviceStatus = { deviceStatusVisible }
skipPrejoinButton = { false }
toolbarButtons = { buttons }
thirdParty = { true }
videoMuted = { !showCameraPreview }
videoTrack = { videoTrack } />
);