Merge pull request #227 from lbryio/fix-abandon

returns myClaims in reducer
This commit is contained in:
Sean Yesmunt 2019-10-17 14:08:08 -04:00 committed by GitHub
commit 7316ee4646
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
dist/bundle.es.js vendored
View file

@ -4143,6 +4143,7 @@ reducers[ABANDON_CLAIM_SUCCEEDED] = (state, action) => {
delete byId[claimId];
return Object.assign({}, state, {
myClaims,
byId,
claimsByUri
});

View file

@ -301,6 +301,7 @@ reducers[ACTIONS.ABANDON_CLAIM_SUCCEEDED] = (state: State, action: any): State =
delete byId[claimId];
return Object.assign({}, state, {
myClaims,
byId,
claimsByUri,
});