Sometimes it would be nice to have dispatch return a promise that resolves after state has been updated. ```js dispatch(actions.doSomething()).then(newState => { // newState is updated state }); ```