diff --git a/examples/async/actions/index.js b/examples/async/actions/index.js index b3c32cd68d..6553788c63 100644 --- a/examples/async/actions/index.js +++ b/examples/async/actions/index.js @@ -29,7 +29,7 @@ function requestPosts(reddit) { function receivePosts(reddit, json) { return { type: RECEIVE_POSTS, - reddit: reddit, + reddit, posts: json.data.children.map(child => child.data), receivedAt: Date.now() }