Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 10, 2023
1 parent cdee136 commit 7e4c1a2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/report/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ export const reportPreview = async (startProps) => {
// Compute the report contents.
// Unlike `reportPreview`, the first reporter is the programmatic one.
export const reportCompute = async (startProps) => {
const [{ result: programmaticResult }, ...contents] = await computeContents(
startProps,
)
const [{ result: programmaticResult }, ...contents] =
await computeContents(startProps)
const contentsA = finalizeContents(contents)
return { programmaticResult, contents: contentsA }
}
Expand Down

0 comments on commit 7e4c1a2

Please sign in to comment.