Corregido error tipográfrico

This commit is contained in:
David Arranz 2022-12-12 12:28:37 +01:00
parent 923e61090c
commit a0047308da

View File

@ -145,7 +145,7 @@ async function syncronizeEventWithMarketingList(eventId) {
}
function userToMarktingDTO(user) {
function userToMarketingDTO(user) {
const result = {};
result.email = user.email ? user.email : '';
result.name = user.name ? user.name : '';
@ -162,6 +162,6 @@ module.exports = {
addMarketingList,
_deleteMember,
_generateMarketingDTO,
userToMarktingDTO,
userToMarketingDTO,
};