@hubsync/esign-web-sdk 6.9.15 → 6.9.16

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.
@@ -999,7 +999,9 @@ export class VerdocsSign {
999
999
  return (h(Host, null, h("verdocs-loader", null)));
1000
1000
  }
1001
1001
  if (this.fatalErrorMessage) {
1002
- return (h(Host, { class: { agreed: this.agreed } }, h("div", { class: "fatal-error" }, h("div", { class: "message" }, h("div", { class: "header" }, this.fatalErrorHeader), h("p", null, this.fatalErrorMessage)))));
1002
+ return (h(Host, null, h("verdocs-ok-dialog", { heading: this.fatalErrorHeader, message: this.fatalErrorMessage, buttonLabel: "OK", onNext: () => {
1003
+ window.location.reload();
1004
+ } })));
1003
1005
  }
1004
1006
  if (this.delegated) {
1005
1007
  return (h(Host, { class: { agreed: false } }, h("div", { class: "fatal-error" }, h("div", { class: "message" }, h("div", { class: "header" }, "Delegated Signing Request"), h("p", null, "You have delegated signing to another recipient. You will not be able to sign this request again.")))));