You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`You seem to have forgotten to pass ownProps to a selector related to ${resourceName}.${actionName}`,
7
-
);
5
+
console.error(`
6
+
You may have forgotten to pass ownProps to a selector related to ${resourceName}.${actionName}
7
+
8
+
For more information, browse the related documentation: https://github.com/Brigad/redux-rest-easy/blob/master/docs/api/createResource/selectors.md#actionrequest
9
+
`);
8
10
return'';
9
11
}
10
12
11
13
if(!ownProps.__requestURLsByActionKey){
12
-
console.error(
13
-
`You seem to have forgotten to use redux-rest-easy's connect on a Component which requested ${resourceName}.${actionName}`,
14
-
);
14
+
console.error(`
15
+
You may have forgotten to use redux-rest-easy's connect on a Component which requested ${resourceName}.${actionName}
16
+
17
+
For more information, browse the related documentation: https://github.com/Brigad/redux-rest-easy/blob/master/docs/api/connect.md#connectconnectargs
0 commit comments