Skip to content

Commit

Permalink
HCX: Adds "use" in patient profile's telecom (#2321)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored Jul 23, 2024
1 parent d42e769 commit 14f1fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion care/hcx/utils/fhir.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def create_patient_profile(
],
name=[{"text": name}],
gender=gender,
telecom=[{"system": "phone", "value": phone}],
telecom=[{"system": "phone", "use": "mobile", "value": phone}],
)

def create_provider_profile(self, id: str, name: str, identifier_value: str):
Expand Down

0 comments on commit 14f1fe3

Please sign in to comment.