diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index d66aa52fad..15846a5e86 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -137,7 +137,7 @@ export class Config { if (!item) return item; const fixRecord = (r: Record) => { for (const key in r) { - if (typeof r[key] !== 'string') { + if (typeof r[key] !== "string") { r[key] = String(r[key]); } }