Skip to content

Commit

Permalink
fix(Hubspot): Répare la création de contact (suite au changement de f…
Browse files Browse the repository at this point in the history
…ormat du numéro de téléphone) (#1232)
  • Loading branch information
raphodn authored May 22, 2024
1 parent 8279dab commit bdfd7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemarche/utils/apis/api_hubspot.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def add_user_to_crm(user):
company=user.company_name,
firstname=user.first_name,
lastname=user.last_name,
phone=user.phone,
phone=str(user.phone),
website=user.c4_website,
)
if result and result.id:
Expand Down

0 comments on commit bdfd7a1

Please sign in to comment.