Skip to content

Commit

Permalink
[Rahul] | BAH-3981 | Fix. Remove Erroneous Filter In Medication Mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
rahu1ramesh committed Jul 11, 2024
1 parent 3c8db62 commit 7c37199
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
getEncounterType,
modifyEmergencyTreatmentData,
mapAdditionalDataForEmergencyTreatments,
isDrugOrderStoppedWithoutAdministration,
getStopReason,
getSlotsForAnOrderAndServiceType,
} from "../utils/TreatmentsUtils";
Expand Down Expand Up @@ -276,10 +275,6 @@ const Treatments = (props) => {
const prescribedTreatments = await Promise.all(
drugOrders
.filter((drugOrderObject) => isIPDDrugOrder(drugOrderObject))
.filter(
(drugOrderObject) =>
!isDrugOrderStoppedWithoutAdministration(drugOrderObject)
)
.map(async (drugOrderObject) => {
let showEditDrugChartLink;
let showStopDrugChartLink;
Expand Down

0 comments on commit 7c37199

Please sign in to comment.