Browse Source

fix action uid name / remove imports

master
Andrei Gavrilescu 5 years ago
parent
commit
4890390ea2
2 changed files with 2 additions and 3 deletions
  1. 0
    1
      react/features/base/devices/index.js
  2. 2
    2
      react/features/base/tracks/actions.js

+ 0
- 1
react/features/base/devices/index.js View File

@@ -1,7 +1,6 @@
1 1
 export * from './actions';
2 2
 export * from './actionTypes';
3 3
 export * from './functions';
4
-export * from './services';
5 4
 
6 5
 import './middleware';
7 6
 import './reducer';

+ 2
- 2
react/features/base/tracks/actions.js View File

@@ -14,7 +14,7 @@ import {
14 14
 import { getLocalParticipant } from '../participants';
15 15
 
16 16
 import {
17
-    SET_NO_SRC_DATA_NOTI_UID,
17
+    SET_NO_SRC_DATA_NOTIFICATION_UID,
18 18
     TOGGLE_SCREENSHARING,
19 19
     TRACK_ADDED,
20 20
     TRACK_CREATE_CANCELED,
@@ -661,7 +661,7 @@ function _trackCreateCanceled(mediaType) {
661 661
     */
662 662
 export function setNoSrcDataNotificationUid(uid) {
663 663
     return {
664
-        type: SET_NO_SRC_DATA_NOTI_UID,
664
+        type: SET_NO_SRC_DATA_NOTIFICATION_UID,
665 665
         uid
666 666
     };
667 667
 }

Loading…
Cancel
Save