Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
carlbrugger and coderabbitai[bot] committed Apr 4, 2024
1 parent 25b2de5 commit 7634be4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/common/src/all.records.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ export async function processRecords<R>(
})) as Flatfile.Record_[]

// Delete updatedAt
records.map((record) =>
Object.values(record.values).map(
records.forEach((record) =>
Object.values(record.values).forEach(
(value: Record<string, Flatfile.CellValue>) => delete value.updatedAt
)
)
Expand Down

0 comments on commit 7634be4

Please sign in to comment.