Skip to content

Commit

Permalink
make name not required when creating contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
eashaw committed Oct 29, 2024
1 parent 776d4d3 commit 2d4136e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ module.exports = {
.create({
AccountId: salesforceAccountId,
OwnerId: salesforceAccountOwnerId,
FirstName: firstName,
LastName: lastName,
FirstName: firstName ? firstName : '?',
LastName: lastName ? lastName : '?',
...valuesToSet,
});
// console.log(`Created ${newContactRecord.id}`);
Expand Down

0 comments on commit 2d4136e

Please sign in to comment.