Update ES URL and beta.8.

This commit is contained in:
Patrick FIc
2025-10-02 21:21:30 -07:00
parent 2704be74a9
commit 700da26112
2 changed files with 3 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ async function ScrubEstimate({ job }) {
});
const resultPDFUrl = result?.data?.report_link;
const reportIssueUrl = `${estimateScrubberUrl}/pcontactUs.aspx?apiKey=${esApiKey}&file=${fileName}.json`
const reportIssueUrl = `https://insurtechtoolkit.com/pcontactUs.aspx?apiKey=${esApiKey}&file=${fileName}.json`
// log.log("Estimate Scrubber Result:", result.data, resultPDFUrl);
const b = BrowserWindow.getAllWindows()[0];
b.webContents.send(ipcTypes.app.toRenderer.scrubResults, {
@@ -146,7 +146,7 @@ async function ScrubEstimate({ job }) {
// pdfWindow.focus();
return resultPDFUrl;
} catch (error) {
log.error("Error while scrubbing estimate:", error);
log.error("Error while scrubbing estimate:", error, error.stack);
log.error("Error Response Data:", error.response?.data);
const mainWindow = BrowserWindow.getAllWindows()[0];