fix: report errors thrown after the frame is ready
Certain challenges involve code that is not run until the user interacts with the preview (typically via a click listener). This uses consoleProxy to report those errors. Error logging has been simplified, reducing the number of places errors can be reported from. Some of the redux-saga code has been renamed in an attempt to improve clarity.
This commit is contained in:
committed by
mrugesh
parent
04d2de96df
commit
beecb04c1a
@@ -59,7 +59,6 @@ function tryTransform(wrap = identity) {
|
||||
return function transformWrappedPoly(source) {
|
||||
const result = attempt(wrap, source);
|
||||
if (isError(result)) {
|
||||
console.error(result);
|
||||
// note(Bouncey): Error thrown here to collapse the build pipeline
|
||||
// At the minute, it will not bubble up
|
||||
// We collapse the pipeline so the app doesn't fall over trying
|
||||
|
Reference in New Issue
Block a user