Promise.all can not work
There is a bug that promise.all can not work, the callback of then, catch, finally method can not be invoked.
return Promise.all(resPromiseList)
.then(() => {
// can not run here sometimes
this.setState({ loaded: true });
...
dylanmay.hashnode.dev1 min read