Skip to content

Commit

Permalink
Merge branch 'develop' into list-and-card-view-in-users-tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahendar0701 authored Dec 28, 2024
2 parents 3a62c2f + 1b6fa7a commit 609f723
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions cypress/e2e/patient_spec/PatientConsultationDischarge.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ describe("Patient Discharge based on multiple reason", () => {
patientDischarge.interceptDischargePatient();
cy.clickSubmitButton("Acknowledge & Submit");
patientDischarge.verifyDischargePatient();
cy.verifyNotification("Patient Discharged Successfully");
// Verify the consultation dashboard reflection
});

afterEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Medicine/MedibaseAutocompleteFormField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function MedibaseAutocompleteFormField(
required
onChange={field.handleChange}
options={mergeQueryOptions(
field.value && !query ? [field.value] : [],
field.value ? [field.value] : [],
data ?? [],
(obj) => obj.id,
)}
Expand Down

0 comments on commit 609f723

Please sign in to comment.