File tree Expand file tree Collapse file tree
packages/react-composites/src/composites/CallComposite/pages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -208,6 +208,17 @@ export const ConfigurationPage = (props: ConfigurationPageProps): JSX.Element =>
208208 }
209209 } ;
210210
211+ /* @conditional -compile-remove(call-readiness) */
212+ const permissionsState : {
213+ camera : PermissionState ;
214+ microphone : PermissionState ;
215+ } = {
216+ camera : cameraPermissionGranted ? 'granted' : 'denied' ,
217+ microphone : microphonePermissionGranted ? 'granted' : 'denied'
218+ } ;
219+ /* @conditional -compile-remove(call-readiness) */
220+ const networkErrors = errorBarProps . activeErrorMessages . filter ( ( message ) => message . type === 'callNetworkQualityLow' ) ;
221+
211222 return (
212223 < Stack className = { mobileView ? configurationContainerStyleMobile : configurationContainerStyleDesktop } >
213224 < Stack styles = { bannerNotificationStyles } >
You can’t perform that action at this time.
0 commit comments