Consider tightening the logic when adding an action to the history service. We should only store an action in the Launch.IO reducer.ts if it returns a new state (object). ```javascript if (updatedState && !checkIsPromise(updatedState)) { ... } ```
Consider tightening the logic when adding an action to the history service.
We should only store an action in the Launch.IO reducer.ts if it returns a new state (object).