fix: Fixes import warnings.

This commit is contained in:
damencho 2021-06-04 16:09:45 -05:00 committed by Дамян Минков
parent 4ace04e63c
commit 37e7919fd1
2 changed files with 6 additions and 4 deletions

View File

@ -37,10 +37,12 @@ import { isEnabled as isDropboxEnabled } from '../../react/features/dropbox';
import { toggleE2EE } from '../../react/features/e2ee/actions';
import { invite } from '../../react/features/invite';
import {
captureLargeVideoScreenshot,
resizeLargeVideo,
selectParticipantInLargeVideo
} from '../../react/features/large-video/actions';
} from '../../react/features/large-video/actions.any';
import {
captureLargeVideoScreenshot,
resizeLargeVideo
} from '../../react/features/large-video/actions.web';
import { toggleLobbyMode } from '../../react/features/lobby/actions';
import { RECORDING_TYPES } from '../../react/features/recording/constants';
import { getActiveSession } from '../../react/features/recording/functions';

View File

@ -17,7 +17,7 @@ import {
TRACK_UPDATED
} from '../base/tracks';
import { selectParticipant, selectParticipantInLargeVideo } from './actions';
import { selectParticipant, selectParticipantInLargeVideo } from './actions.any';
import logger from './logger';
import './subscriber';