Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Mar 15, 2024
1 parent 10f428f commit 8578700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Facility/ConsultationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ export const ConsultationForm = ({ facilityId, patientId, id }: Props) => {
weight: Number(state.form.weight),
height: Number(state.form.height),
bed: bed && bed instanceof Array ? bed[0]?.id : bed?.id,
patient_no: state.form.patient_no,
patient_no: state.form.patient_no || null,
};

const res = await dispatchAction(
Expand Down

0 comments on commit 8578700

Please sign in to comment.