Skip to content

Commit

Permalink
fix: missing message field on the notify personalisation (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
daine authored May 23, 2024
1 parent 928bb56 commit d6a4637
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ app.post('/submission', async (req, res) => {
personalisation: {
name: name,
email: email,
message: message,
learnMore: learnMore,
familiarityGCDS: familiarityGCDS,
message: message ? message : '',
learnMore: learnMore ? learnMore : '',
familiarityGCDS: familiarityGCDS ? familiarityGCDS : '',
},
});

Expand Down

0 comments on commit d6a4637

Please sign in to comment.