Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Aug 7, 2024
1 parent f8496f0 commit b8c6124
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ export const ConsultationUpdatesTab = (props: ConsultationTabProps) => {
</div>
<div>
Body Surface Area {" - "}
<span className="font-semibold ">
<span className="font-semibold">
{props.consultationData.weight &&
props.consultationData.height ? (
<>
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Facility/ConsultationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ export const ConsultationForm = ({ facilityId, patientId, id }: Props) => {
admitted: data.admitted ? String(data.admitted) : "false",
admitted_to: data.admitted_to ? data.admitted_to : "",
category: data.category
? PATIENT_CATEGORIES.find((i) => i.text === data.category)?.id ??
""
? (PATIENT_CATEGORIES.find((i) => i.text === data.category)?.id ??
"")
: "",
patient_no: data.patient_no ?? "",
OPconsultation: data.consultation_notes,
Expand Down
6 changes: 5 additions & 1 deletion src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,11 @@ export const DailyRounds = (props: any) => {
<>
<h3 className="mb-6 md:col-span-2">Vitals</h3>

<BloodPressureFormField {...field("bp")} label="Blood Pressure" id="bloodPressure" />
<BloodPressureFormField
{...field("bp")}
label="Blood Pressure"
id="bloodPressure"
/>

<RangeAutocompleteFormField
{...field("pulse")}
Expand Down

0 comments on commit b8c6124

Please sign in to comment.