Skip to content

Commit

Permalink
Fix some typos that snuck into audit report generation (#1839) (#1887)
Browse files Browse the repository at this point in the history
* Cherry-pick only ARPA fix from #1831

Original commit: dcf651e

* Fix some typos that snuck into audit report generation (#1839)

---------

Co-authored-by: aditya <[email protected]>
  • Loading branch information
ajhyndman and as1729 authored Sep 8, 2023
1 parent dddedf5 commit 04efeab
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/server/src/arpa_reporter/lib/audit-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,7 @@ async function generate(requestHost) {
return newWorkbook;
});

const outputWorkBook = tracer.trace('XLSX.write', () => {
XLSX.write(workbook, { bookType: 'xlsx', type: 'buffer' });
});
const outputWorkBook = tracer.trace('XLSX.write', () => XLSX.write(workbook, { bookType: 'xlsx', type: 'buffer' }));

return {
periodId,
Expand Down

0 comments on commit 04efeab

Please sign in to comment.