fix action uid name / remove imports

This commit is contained in:
Andrei Gavrilescu
2019-12-06 11:37:08 +00:00
committed by Hristo Terezov
parent 7828bf8d46
commit 4890390ea2
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -1,7 +1,6 @@
export * from './actions';
export * from './actionTypes';
export * from './functions';
export * from './services';
import './middleware';
import './reducer';
+2 -2
View File
@@ -14,7 +14,7 @@ import {
import { getLocalParticipant } from '../participants';
import {
SET_NO_SRC_DATA_NOTI_UID,
SET_NO_SRC_DATA_NOTIFICATION_UID,
TOGGLE_SCREENSHARING,
TRACK_ADDED,
TRACK_CREATE_CANCELED,
@@ -661,7 +661,7 @@ function _trackCreateCanceled(mediaType) {
*/
export function setNoSrcDataNotificationUid(uid) {
return {
type: SET_NO_SRC_DATA_NOTI_UID,
type: SET_NO_SRC_DATA_NOTIFICATION_UID,
uid
};
}