Browse Source

fix: Fixes import warnings.

j8
damencho 3 years ago
parent
commit
37e7919fd1
2 changed files with 6 additions and 4 deletions
  1. 5
    3
      modules/API/API.js
  2. 1
    1
      react/features/large-video/middleware.js

+ 5
- 3
modules/API/API.js View File

@@ -37,10 +37,12 @@ import { isEnabled as isDropboxEnabled } from '../../react/features/dropbox';
37 37
 import { toggleE2EE } from '../../react/features/e2ee/actions';
38 38
 import { invite } from '../../react/features/invite';
39 39
 import {
40
-    captureLargeVideoScreenshot,
41
-    resizeLargeVideo,
42 40
     selectParticipantInLargeVideo
43
-} from '../../react/features/large-video/actions';
41
+} from '../../react/features/large-video/actions.any';
42
+import {
43
+    captureLargeVideoScreenshot,
44
+    resizeLargeVideo
45
+} from '../../react/features/large-video/actions.web';
44 46
 import { toggleLobbyMode } from '../../react/features/lobby/actions';
45 47
 import { RECORDING_TYPES } from '../../react/features/recording/constants';
46 48
 import { getActiveSession } from '../../react/features/recording/functions';

+ 1
- 1
react/features/large-video/middleware.js View File

@@ -17,7 +17,7 @@ import {
17 17
     TRACK_UPDATED
18 18
 } from '../base/tracks';
19 19
 
20
-import { selectParticipant, selectParticipantInLargeVideo } from './actions';
20
+import { selectParticipant, selectParticipantInLargeVideo } from './actions.any';
21 21
 import logger from './logger';
22 22
 
23 23
 import './subscriber';

Loading…
Cancel
Save