Browse Source

fix action uid name / remove imports

master
Andrei Gavrilescu 6 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
 export * from './actions';
1
 export * from './actions';
2
 export * from './actionTypes';
2
 export * from './actionTypes';
3
 export * from './functions';
3
 export * from './functions';
4
-export * from './services';
5
 
4
 
6
 import './middleware';
5
 import './middleware';
7
 import './reducer';
6
 import './reducer';

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

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

Loading…
Cancel
Save