This commit is contained in:
Stuart Taylor
2018-04-12 16:07:21 +01:00
committed by Mrugesh Mohapatra
parent 4ba0bb2f89
commit 054ac51dce

View File

@ -44,13 +44,10 @@ function updateMainEpic(actions, { getState }, { document }) {
buildFromFiles(getState(), true)
.map(frameMain)
.ignoreElements()
.catch(() => of({ type: 'NULL'}))
.catch(() => of({ type: 'NULL' }))
)
);
return merge(
buildAndFrameMain,
proxyLogger.map(updateConsole)
);
return merge(buildAndFrameMain, proxyLogger.map(updateConsole));
})
);
}