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 5cef34d0ef
commit 5c762aa3ad

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] = '***'
}
})
}