This commit is contained in:
Adria Navarro 2024-03-15 20:08:59 +01:00
parent 21a387f4fe
commit a78485e325
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export async function processObject<T extends Record<string, any>>(
parsedValue = await processObject(object[key], context, opts)
}
;(object as Record<string, any>)[key] = parsedValue
(object as Record<string, any>)[key] = parsedValue
}
}
return object