use CLAIM_LIST instead of CLAIM_LIST_MINE
This commit is contained in:
parent
86530690e9
commit
fec4612867
2 changed files with 4 additions and 4 deletions
4
dist/bundle.js
vendored
4
dist/bundle.js
vendored
|
@ -4587,11 +4587,11 @@ reducers[ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED] = function (state, action) {
|
|||
});
|
||||
};
|
||||
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_MINE_STARTED] = function (state) {
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_STARTED] = function (state) {
|
||||
return Object.assign({}, state, { fetchingMyChannels: true });
|
||||
};
|
||||
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_MINE_COMPLETED] = function (state, action) {
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_COMPLETED] = function (state, action) {
|
||||
var claims = action.data.claims;
|
||||
|
||||
var myChannelClaims = new Set(state.myChannelClaims);
|
||||
|
|
|
@ -83,10 +83,10 @@ reducers[ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED] = (state, action) => {
|
|||
});
|
||||
};
|
||||
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_MINE_STARTED] = state =>
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_STARTED] = state =>
|
||||
Object.assign({}, state, { fetchingMyChannels: true });
|
||||
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_MINE_COMPLETED] = (state, action) => {
|
||||
reducers[ACTIONS.FETCH_CHANNEL_LIST_COMPLETED] = (state, action) => {
|
||||
const { claims } = action.data;
|
||||
const myChannelClaims = new Set(state.myChannelClaims);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
|
|
Loading…
Add table
Reference in a new issue