Skip to content

Commit 7bf6112

Browse files
committed
redux [nfc]: Simplify combined reducer (n/n): done.
1 parent 378e1fd commit 7bf6112

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/boot/reducers.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ function applyReducer<Key: $Keys<GlobalState>, State>(
6161
return nextState;
6262
}
6363

64-
// Inlined just now from Redux upstream.
65-
// We'll clean this up in the next few commits.
64+
// Based on Redux upstream's combineReducers.
6665
const combinedReducer = (state: void | GlobalState, action: Action): GlobalState => {
6766
// prettier-ignore
6867
const nextState = {

0 commit comments

Comments
 (0)