fix(prejoin) fix background selection not being available for 3rd party apps

This commit is contained in:
Tudor-Ovidiu Avram 2021-04-19 17:06:27 +03:00 committed by Дамян Минков
parent 572b99b208
commit 9d0c6e3741
1 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { batch } from 'react-redux';
import { BaseApp } from '../../../features/base/app';
import { setConfig } from '../../base/config';
import { DialogContainer } from '../../base/dialog';
import { createPrejoinTracks } from '../../base/tracks';
import { getConferenceOptions } from '../../conference/functions';
import { initPrejoin, makePrecallTest } from '../actions';
@ -99,6 +100,10 @@ export default class PrejoinApp extends BaseApp<Props> {
* @returns {React$Element}
*/
_renderDialogContainer() {
return null;
return (
<AtlasKitThemeProvider mode = 'dark'>
<DialogContainer />
</AtlasKitThemeProvider>
);
}
}