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