File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export default function getManagers() {
14
14
latency : 1000 ,
15
15
// skip websocket updates as these are too spammy
16
16
predicate : ( state , action ) =>
17
- action . type !== actionTypes . SET_TYPE || action . schema !== Ticker ,
17
+ action . type !== actionTypes . SET || action . schema !== Ticker ,
18
18
} ,
19
19
} ) ,
20
20
] ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export default class StreamManager implements Manager {
29
29
this . controller = controller ;
30
30
return next => async action => {
31
31
switch ( action . type ) {
32
- case actionTypes . SUBSCRIBE_TYPE :
32
+ case actionTypes . SUBSCRIBE :
33
33
// only process registered endpoints
34
34
if (
35
35
! Object . values ( this . entities ) . find (
@@ -45,7 +45,7 @@ export default class StreamManager implements Manager {
45
45
}
46
46
47
47
return next ( action ) ;
48
- case actionTypes . UNSUBSCRIBE_TYPE :
48
+ case actionTypes . UNSUBSCRIBE :
49
49
// only process registered endpoints
50
50
if (
51
51
! Object . values ( this . entities ) . find (
You can’t perform that action at this time.
0 commit comments