We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f4c867 commit 774dfdeCopy full SHA for 774dfde
10_middleware.js
@@ -126,7 +126,7 @@ store_0.dispatch(asyncSayActionCreator_1('Hi'))
126
function logMiddleware ({ dispatch, getState }) {
127
return function(next) {
128
return function (action) {
129
- console.log('logMiddleware action recieved:', action)
+ console.log('logMiddleware action received:', action)
130
return next(action)
131
}
132
@@ -138,7 +138,7 @@ function logMiddleware ({ dispatch, getState }) {
138
function discardMiddleware ({ dispatch, getState }) {
139
140
141
- console.log('discardMiddleware action recieved:', action)
+ console.log('discardMiddleware action received:', action)
142
143
144
0 commit comments