Fix issue with weird semicolon thing
This commit is contained in:
parent
69249a11dc
commit
420aa5ed78
1 changed files with 2 additions and 0 deletions
|
|
@ -79,6 +79,8 @@ export class LoggerInstance {
|
||||||
const toObfuscate = ['password']
|
const toObfuscate = ['password']
|
||||||
toObfuscate.forEach((key) => {
|
toObfuscate.forEach((key) => {
|
||||||
if ((details as Record<string, unknown>)[key]) {
|
if ((details as Record<string, unknown>)[key]) {
|
||||||
|
// Prettier and eslint are fighting
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-extra-semi
|
||||||
;(details as Record<string, unknown>)[key] = '***'
|
;(details as Record<string, unknown>)[key] = '***'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue