fix formatting

This commit is contained in:
HKalbasi 2022-10-12 14:14:59 -07:00 committed by GitHub
parent 983ae1b1c9
commit 58e5452a9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -137,7 +137,7 @@ export class Config {
if (!item) return item;
const fixRecord = (r: Record<string, any>) => {
for (const key in r) {
if (typeof r[key] !== 'string') {
if (typeof r[key] !== "string") {
r[key] = String(r[key]);
}
}