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 3d51a63 commit 687747fCopy full SHA for 687747f
src/components/ngRedux.js
@@ -12,13 +12,13 @@ export default function ngReduxProvider() {
12
invariant(
13
isFunction(reducer),
14
'The reducer parameter passed to createStoreWith must be a Function. Instead received %s.',
15
- typeof selector
+ typeof reducer
16
);
17
18
19
!storeEnhancer || isFunction(storeEnhancer),
20
'The storeEnhancer parameter passed to createStoreWith must be a Function. Instead received %s.',
21
+ typeof storeEnhancer
22
23
24
_reducer = reducer;
0 commit comments