update reward timeout to 2 seconds
This commit is contained in:
parent
02d8571cd7
commit
699dc63459
3 changed files with 3 additions and 3 deletions
2
dist/bundle.es.js
vendored
2
dist/bundle.es.js
vendored
|
@ -1647,7 +1647,7 @@ function doClaimRewardType(rewardType, options = {}) {
|
|||
options.callback();
|
||||
}
|
||||
});
|
||||
}, 1000);
|
||||
}, 2000);
|
||||
};
|
||||
|
||||
const failure = error => {
|
||||
|
|
2
dist/bundle.js
vendored
2
dist/bundle.js
vendored
|
@ -2207,7 +2207,7 @@ function doClaimRewardType(rewardType) {
|
|||
options.callback();
|
||||
}
|
||||
});
|
||||
}, 1000);
|
||||
}, 2000);
|
||||
};
|
||||
|
||||
var failure = function failure(error) {
|
||||
|
|
|
@ -95,7 +95,7 @@ export function doClaimRewardType(rewardType, options = {}) {
|
|||
options.callback();
|
||||
}
|
||||
});
|
||||
}, 1000);
|
||||
}, 2000);
|
||||
};
|
||||
|
||||
const failure = error => {
|
||||
|
|
Loading…
Reference in a new issue