diff --git a/packages/twenty-server/src/modules/match-participant/match-participant.service.ts b/packages/twenty-server/src/modules/match-participant/match-participant.service.ts index 1379a439fe..f6d8c5080a 100644 --- a/packages/twenty-server/src/modules/match-participant/match-participant.service.ts +++ b/packages/twenty-server/src/modules/match-participant/match-participant.service.ts @@ -186,7 +186,10 @@ export class MatchParticipantService< await participantRepository.updateMany( partipantsToBeUpdated.map((participant) => ({ criteria: participant.id, - partialEntity: participant, + partialEntity: { + personId: participant.personId, + workspaceMemberId: participant.workspaceMemberId, + }, })), );