Skip to content

Commit 6206636

Browse files
committed
Add quotes around INIT action type in error
Former-commit-id: f843f6e
1 parent ba572ce commit 6206636

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

errors.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"10": "Expected the nextReducer to be a function. Instead, received: '",
1313
"11": "Expected the observer to be an object. Instead, received: ''",
1414
"12": "The slice reducer for key \"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.",
15-
"13": "The slice reducer for key \"\" returned undefined when probed with a random type. Don't try to handle or other actions in \"redux/*\" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.",
15+
"13": "The slice reducer for key \"\" returned undefined when probed with a random type. Don't try to handle '' or other actions in \"redux/*\" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.",
1616
"14": "When called with an action of type , the slice reducer for key \"\" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.",
1717
"15": "Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.",
1818
"16": "bindActionCreators expected an object or a function, but instead received: ''. Did you write \"import ActionCreators from\" instead of \"import * as ActionCreators from\"?"

src/combineReducers.ts.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8ab020ebc16b7bbb88896f9a7ab48fc37b3f6408
1+
2de2e55bd890e8f8a7ee4f2f1215b7a787e6e4ec

src/createStore.ts.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d1bc6abaa2ca81980ad24406d28277816cd3cc45
1+
73b27c1be652de0e722106efe07f93f5c418d83b

0 commit comments

Comments
 (0)