Skip to content

Commit d3db978

Browse files
CoderrobCopilot
andauthored
Update src/core/rendering/console-output.writer.ts
Co-authored-by: Copilot <[email protected]>
1 parent ed32658 commit d3db978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/rendering/console-output.writer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class ConsoleOutputWriter implements IOutputWriter {
121121
// eslint-disable-next-line security/detect-object-injection
122122
const values = headers.map((header) => {
123123
const value = Object.prototype.hasOwnProperty.call(item, header)
124-
? (item as Record<string, unknown>)[header as string]
124+
? (item as Record<string, unknown>)[header]
125125
: null;
126126
// Escape quotes and wrap in quotes if contains comma
127127
const stringValue = String(value ?? '');

0 commit comments

Comments
 (0)