Skip to content

Commit

Permalink
fix(index.js): fix standard build
Browse files Browse the repository at this point in the history
  • Loading branch information
vslutov committed Sep 2, 2019
1 parent bd84dbb commit fb8fe8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const routerMiddleware = history => store => next => {
return action => {
// location actions may be in batchAction.payload
if (action.type === batchType) {
for (let subAction of action.payload) {
for (const subAction of action.payload) {
mayCallHistory(subAction)
}
}
Expand Down

0 comments on commit fb8fe8d

Please sign in to comment.