diff --git a/frontend/src/components/DraftReportPage.vue b/frontend/src/components/DraftReportPage.vue index 0850f2107..f8d79be73 100644 --- a/frontend/src/components/DraftReportPage.vue +++ b/frontend/src/components/DraftReportPage.vue @@ -12,7 +12,7 @@ Back - + @@ -162,7 +162,9 @@ async function tryGenerateReport() { if (shouldGenerateReport) { isProcessing.value = true; try { - const reportData = await ApiService.publishReport(ReportStepperStore.reportId ?? ''); + const reportData = await ApiService.publishReport( + ReportStepperStore.reportId ?? '', + ); await ReportStepperStore.setReportInfo(reportData); NotificationService.pushNotificationSuccess( 'You have created a pay transparency report.', @@ -183,7 +185,6 @@ async function downloadPdf(reportId: string | undefined) {