From 2264206dc1ceb2a6f8a452ab6167bb90c0bae6d3 Mon Sep 17 00:00:00 2001 From: Alberto Date: Fri, 7 Mar 2025 11:11:30 +0000 Subject: [PATCH] try prod --- src/libs/actions/Report.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/actions/Report.ts b/src/libs/actions/Report.ts index c919275426a8..331e40a03a09 100644 --- a/src/libs/actions/Report.ts +++ b/src/libs/actions/Report.ts @@ -4685,7 +4685,7 @@ function exportReportToPDF({reportID}: ExportReportPDFParams) { function downloadReportPDF(fileName: string, reportName: string) { const baseURL = addTrailingForwardSlash(getOldDotURLFromEnvironment(environment)); const downloadFileName = `${reportName}.pdf`; - const pdfURL = `https://staging.expensify.com/secure?secureType=pdfreport&filename=${fileName}&downloadName=${downloadFileName}`; + const pdfURL = `https://www.expensify.com/secure?secureType=pdfreport&filename=${fileName}&downloadName=${downloadFileName}`; setDownload(downloadFileName, true); fileDownload(pdfURL, downloadFileName, '', Browser.isMobileSafari()).then(() => setDownload(downloadFileName, false)); }