Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Docs: remove extraArgument from code example
  • Loading branch information
crgmz authored May 16, 2021
commit 81c8002c9fdeed5fb1f2bfc0e4d4a6ce592d8e36
2 changes: 1 addition & 1 deletion docs/tutorials/essentials/part-2-app-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ const thunkMiddleware =
next =>
action => {
if (typeof action === 'function') {
return action(dispatch, getState, extraArgument)
return action(dispatch, getState)
}

return next(action)
Expand Down