Skip to content

Commit

Permalink
Fix new linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
code-asher committed Aug 30, 2023
1 parent aa330bb commit 04d18db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,11 @@ export class Logger {
passedFields = values as FieldArray
}

const fields = (this.defaultFields
? passedFields.filter((f) => !!f).concat(this.defaultFields)
: passedFields.filter((f) => !!f)) as Array<Field<Argument>>
const fields = (
this.defaultFields
? passedFields.filter((f) => !!f).concat(this.defaultFields)
: passedFields.filter((f) => !!f)
) as Array<Field<Argument>>

const now = Date.now()
let times: Array<Field<Time>> = []
Expand Down

0 comments on commit 04d18db

Please sign in to comment.