From d9a620c8f3e2e4758e1dce842d082e8f231146aa Mon Sep 17 00:00:00 2001 From: Shivank Kacker Date: Tue, 10 Dec 2024 09:06:40 +0530 Subject: [PATCH] Reorder Patient Search Buttons (#9319) --- src/components/Patient/ManagePatients.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/Patient/ManagePatients.tsx b/src/components/Patient/ManagePatients.tsx index 6fba4d6e734..65fc0e73933 100644 --- a/src/components/Patient/ManagePatients.tsx +++ b/src/components/Patient/ManagePatients.tsx @@ -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", @@ -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",