Skip to content

Commit 840de67

Browse files
authored
Flatten array before joining (#23222)
Fix PR report body created for this issue: https://github.com/github/docs-engineering/issues/1278
1 parent e5b52ec commit 840de67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script/i18n/report-reset-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function pullRequestBodyReport() {
7171
body.push(checkBoxes)
7272
})
7373

74-
return body.join('\n')
74+
return body.flat().join('\n')
7575
}
7676

7777
function csvReport() {

0 commit comments

Comments
 (0)