Skip to content

Commit

Permalink
fix(core): Remove empty customFields relations from getMissingRelatio…
Browse files Browse the repository at this point in the history
…ns in entity-hydrator (#2765)
  • Loading branch information
monrostar authored Apr 4, 2024
1 parent 4c091fb commit 1c44113
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export class EntityHydrator {
}
}
}
return unique(missingRelations);
return unique(missingRelations.filter(relation => !relation.endsWith('.customFields')));
}

private getRequiredProductVariantRelations<Entity extends VendureEntity>(
Expand Down

0 comments on commit 1c44113

Please sign in to comment.