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.
2 parents fa556d0 + 7075bdf commit a226e0bCopy full SHA for a226e0b
src/components/connector.js
@@ -21,12 +21,12 @@ export default function Connector(store) {
21
22
invariant(
23
isFunction(finalMapStateToTarget),
24
- 'mapStateToTarget must be a Function. Instead received $s.', finalMapStateToTarget
+ 'mapStateToTarget must be a Function. Instead received %s.', finalMapStateToTarget
25
);
26
27
28
isPlainObject(finalMapDispatchToTarget) || isFunction(finalMapDispatchToTarget),
29
- 'mapDispatchToTarget must be a plain Object or a Function. Instead received $s.', finalMapDispatchToTarget
+ 'mapDispatchToTarget must be a plain Object or a Function. Instead received %s.', finalMapDispatchToTarget
30
31
32
let slice = getStateSlice(store.getState(), finalMapStateToTarget);
0 commit comments