| 48 | }; |
| 49 | |
| 50 | export const dispatchError = dispatch => (message, lines) => |
| 51 | dispatch( |
| 52 | onError({ |
| 53 | type: 'backEnd', |
| 54 | error: {message, html: lines.join('\n')} |
| 55 | }) |
| 56 | ); |
| 57 | |
| 58 | export function hydrateInitialOutputs() { |
| 59 | return function (dispatch, getState) { |
no outgoing calls
no test coverage detected
searching dependent graphs…