This commit is contained in:
David Arranz 2026-03-23 18:51:18 +01:00
parent 6ec4841107
commit 969f47357d

View File

@ -19,7 +19,6 @@ export abstract class DomainEntity<T extends object> {
protected _flattenProps(props: T): { [s: string]: any } {
return Object.entries(props).reduce((result: any, [key, valueObject]) => {
console.log(key, valueObject.value);
result[key] = valueObject.value;
return result;