From 7bf6112f4cdeb8a2301daece91c9cb1327809d96 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Fri, 18 Dec 2020 22:16:30 -0800 Subject: [PATCH] redux [nfc]: Simplify combined reducer (n/n): done. --- src/boot/reducers.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/boot/reducers.js b/src/boot/reducers.js index c9fdd90ac47..7f815f07df3 100644 --- a/src/boot/reducers.js +++ b/src/boot/reducers.js @@ -61,8 +61,7 @@ function applyReducer, State>( return nextState; } -// Inlined just now from Redux upstream. -// We'll clean this up in the next few commits. +// Based on Redux upstream's combineReducers. const combinedReducer = (state: void | GlobalState, action: Action): GlobalState => { // prettier-ignore const nextState = {