()
| 56 | ); |
| 57 | |
| 58 | export function hydrateInitialOutputs() { |
| 59 | return function (dispatch, getState) { |
| 60 | validateCallbacksToLayout(getState(), dispatchError(dispatch)); |
| 61 | triggerDefaultState(dispatch, getState); |
| 62 | dispatch(setAppLifecycle(getAppState('HYDRATED'))); |
| 63 | }; |
| 64 | } |
| 65 | |
| 66 | /* eslint-disable-next-line no-console */ |
| 67 | const logWarningOnce = once(console.warn); |
no test coverage detected
searching dependent graphs…