@seatlayer/js 0.33.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -633,7 +633,8 @@ var EmbeddedDesigner = class {
633
633
  this.options.onRequestRelaunch();
634
634
  return;
635
635
  }
636
- this.showError(cause);
636
+ const fatal = typeof message.fatal === "boolean" ? message.fatal : cause !== "load" || this.phase !== "ready";
637
+ if (fatal) this.showError(cause);
637
638
  this.options.onError?.(message);
638
639
  break;
639
640
  }