We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Error: cannot await properties of a non-object.
The .props method expects to receive an object.
.props
For example:
Promise.props({ pictures: getPictures(), comments: getComments(), tweets: getTweets() }).then(function(result){ console.log(result.tweets, result.pictures, result.comments); });
This happens when a non object value or a promise that resolves with something that is not an object is being passed instead.