tf-checkout-react 1.5.4-beta.0 → 1.5.4-beta.1

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.
@@ -627,6 +627,7 @@ var downloadPDF = function downloadPDF(pdfUrl) {
627
627
  var link = document.createElement('a');
628
628
  link.href = fileURL;
629
629
  link.setAttribute('download', fileName);
630
+ document.body.appendChild(link);
630
631
  link.click();
631
632
  document.body.removeChild(link);
632
633
  })["catch"](function (error) {