Skip to content

Commit

Permalink
Reorder Patient Search Buttons (#9319)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker authored Dec 10, 2024
1 parent 0f58adc commit d9a620c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/Patient/ManagePatients.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -749,14 +749,6 @@ export const PatientManager = () => {
permittedFacilities?.count === 1 ? permittedFacilities.results[0] : null;

const searchOptions = [
{
key: "phone_number",
label: "Phone Number",
type: "phone" as const,
placeholder: "Search_by_phone_number",
value: qParams.phone_number || "",
shortcutKey: "p",
},
{
key: "name",
label: "Name",
Expand All @@ -773,6 +765,14 @@ export const PatientManager = () => {
value: qParams.patient_no || "",
shortcutKey: "u",
},
{
key: "phone_number",
label: "Phone Number",
type: "phone" as const,
placeholder: "Search_by_phone_number",
value: qParams.phone_number || "",
shortcutKey: "p",
},
{
key: "emergency_contact_number",
label: "Emergency Contact Phone Number",
Expand Down

0 comments on commit d9a620c

Please sign in to comment.