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 3f02418 + c39ee57 commit 78c29b7Copy full SHA for 78c29b7
src/utils/combineReducers.js
@@ -85,7 +85,7 @@ export default function combineReducers(reducers) {
85
);
86
}
87
88
- var type = Math.random().toString(36).substring(7).split('').join('.');
+ var type = '@@redux/PROBE_UNKNOWN_ACTION_' + Math.random().toString(36).substring(7).split('').join('.');
89
if (!sanityError && typeof reducer(undefined, { type }) === 'undefined') {
90
sanityError = new Error(
91
`Reducer "${key}" returned undefined when probed with a random type. ` +
0 commit comments