Skip to content

Commit

Permalink
fix CICD error
Browse files Browse the repository at this point in the history
  • Loading branch information
maliknajjar committed Sep 27, 2024
1 parent c1d714f commit f68f7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guifier/classes/Data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f68f7d0

Please sign in to comment.