Skip to content

Commit

Permalink
Fix empty-middleware for SSR
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwcomeau committed Feb 7, 2017
1 parent 38b4e22 commit b52df99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/empty-middleware.js
@@ -1,3 +1,3 @@
export default () => next => action => {
export default () => () => next => action => {
next(action);
};

0 comments on commit b52df99

Please sign in to comment.