Removing the weird semicolon-infront-of-typed-variable thing!

This commit is contained in:
Collin Duncan 2022-11-29 22:50:49 +01:00
parent 0fe86542a1
commit a765df3530
No known key found for this signature in database

View file

@ -79,7 +79,7 @@ export class LoggerInstance {
const toObfuscate = ['password']
toObfuscate.forEach((key) => {
if ((details as Record<string, unknown>)[key]) {
(details as Record<string, unknown>)[key] = '***'
;(details as Record<string, unknown>)[key] = '***'
}
})
}