cleanup
This commit is contained in:
parent
d45317807e
commit
34b20795e3
2 changed files with 2 additions and 2 deletions
2
dist/bundle.es.js
vendored
2
dist/bundle.es.js
vendored
|
@ -4468,7 +4468,6 @@ function doCollectionPublish(options, localId) {
|
|||
function doCollectionPublishUpdate(options, isBackgroundUpdate) {
|
||||
return (dispatch, getState) => {
|
||||
// TODO: implement one click update
|
||||
const state = getState();
|
||||
|
||||
const updateParams = isBackgroundUpdate ? {
|
||||
blocking: true,
|
||||
|
@ -4488,6 +4487,7 @@ function doCollectionPublishUpdate(options, isBackgroundUpdate) {
|
|||
};
|
||||
|
||||
if (isBackgroundUpdate && updateParams.claim_id) {
|
||||
const state = getState();
|
||||
updateParams['claims'] = makeSelectClaimIdsForCollectionId(updateParams.claim_id)(state);
|
||||
} else if (options.claims) {
|
||||
updateParams['claims'] = options.claims;
|
||||
|
|
|
@ -847,7 +847,6 @@ export function doCollectionPublishUpdate(
|
|||
) {
|
||||
return (dispatch: Dispatch, getState: GetState): Promise<any> => {
|
||||
// TODO: implement one click update
|
||||
const state = getState();
|
||||
|
||||
const updateParams: {
|
||||
bid?: string,
|
||||
|
@ -880,6 +879,7 @@ export function doCollectionPublishUpdate(
|
|||
};
|
||||
|
||||
if (isBackgroundUpdate && updateParams.claim_id) {
|
||||
const state = getState();
|
||||
updateParams['claims'] = makeSelectClaimIdsForCollectionId(updateParams.claim_id)(state);
|
||||
} else if (options.claims) {
|
||||
updateParams['claims'] = options.claims;
|
||||
|
|
Loading…
Reference in a new issue