Skip to content

Commit

Permalink
Add quotes around INIT action type in error
Browse files Browse the repository at this point in the history
Former-commit-id: f843f6e
  • Loading branch information
markerikson committed Apr 2, 2021
1 parent ba572ce commit 6206636
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"10": "Expected the nextReducer to be a function. Instead, received: '",
"11": "Expected the observer to be an object. Instead, received: ''",
"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.",
"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.",
"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.",
"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.",
"15": "Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.",
"16": "bindActionCreators expected an object or a function, but instead received: ''. Did you write \"import ActionCreators from\" instead of \"import * as ActionCreators from\"?"
Expand Down
2 changes: 1 addition & 1 deletion src/combineReducers.ts.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8ab020ebc16b7bbb88896f9a7ab48fc37b3f6408
2de2e55bd890e8f8a7ee4f2f1215b7a787e6e4ec
2 changes: 1 addition & 1 deletion src/createStore.ts.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d1bc6abaa2ca81980ad24406d28277816cd3cc45
73b27c1be652de0e722106efe07f93f5c418d83b

0 comments on commit 6206636

Please sign in to comment.