Skip to content

Commit

Permalink
fix(functions): fixes issues with sending email notifications for new…
Browse files Browse the repository at this point in the history
… BikeTag posts
  • Loading branch information
KenEucker committed Jan 11, 2024
1 parent bc011c0 commit 40c6218
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions functions/common/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ export const sendNewBikeTagNotifications = async (
)
}

console.log('emailing', { thisGamesAmbassadors })
// console.log('emailing', { thisGamesAmbassadors })
notificationPromises.push(
sendEmailsToAmbassadors(
'biketag-auto-posted',
Expand Down Expand Up @@ -1341,7 +1341,6 @@ export const sendNewBikeTagNotifications = async (
}
},
).then((results) => {
console.log('email results', { results })
return results.accepted.concat(results.rejected)
}),
)
Expand Down

0 comments on commit 40c6218

Please sign in to comment.