Skip to content

Commit fcc2903

Browse files
authored
Return the value returned by the middlewareHandler
1 parent e1e8417 commit fcc2903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oidcMiddleware.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ export default function createOidcMiddleware(userManager) {
6868

6969
// the middleware
7070
return (store) => (next) => (action) => {
71-
middlewareHandler(next, action, userManager);
71+
return middlewareHandler(next, action, userManager);
7272
}
7373
};

0 commit comments

Comments
 (0)