Skip to content

Commit

Permalink
Merge branch 'feature/user-new-fields' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zMardone committed Oct 17, 2023
2 parents 25aa668 + 145cb14 commit 30c5d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connect/api/v1/account/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def add_additional_information(self, request, **kwargs):
user=dict(
phone=user.phone,
last_update_profile=user.last_update_profile,
position=user.position.split(":")[1] if self.position and "other:" in self.position else user.position,
position=user.position.split(":")[1] if user.position and "other:" in user.position else user.position,
utm=user.utm
)
)
Expand Down

0 comments on commit 30c5d69

Please sign in to comment.