diff --git a/src/guifier/classes/Data.ts b/src/guifier/classes/Data.ts index 4bd483d..3d66638 100644 --- a/src/guifier/classes/Data.ts +++ b/src/guifier/classes/Data.ts @@ -133,7 +133,7 @@ export class Data { } case DataType.Toml: try { - const processedData = lodash.cloneDeepWith(data, (value: any, key: any) => { + const processedData = lodash.cloneDeepWith(data, (value: any) => { if (value instanceof Date) { value = new TomlDate(value.toISOString().split('T')[0]) return value