From bf8e97eb81b06aa3a137478133bbc291f0c2c917 Mon Sep 17 00:00:00 2001 From: Gregg Stubberfield Date: Tue, 28 Oct 2025 17:54:44 -0400 Subject: [PATCH 1/2] feat: #392 - Remove Euthymic from dropdown --- frontend/src/pages/PatientManager/PatientTypes.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/pages/PatientManager/PatientTypes.ts b/frontend/src/pages/PatientManager/PatientTypes.ts index 26e40d01..f7a9d13c 100644 --- a/frontend/src/pages/PatientManager/PatientTypes.ts +++ b/frontend/src/pages/PatientManager/PatientTypes.ts @@ -53,6 +53,5 @@ export interface NewPatientInfo { export enum Diagnosis { Manic = "Manic", Depressed = "Depressed", - Hypomanic = "Hypomanic", - Euthymic = "Euthymic", + Hypomanic = "Hypomanic" } From f6ca05008e7da240eeb39f9141fb34eb63cb7dc6 Mon Sep 17 00:00:00 2001 From: Gregg Stubberfield Date: Tue, 28 Oct 2025 17:57:31 -0400 Subject: [PATCH 2/2] feat: #392 - Rename Current state label to Current or Most recent state --- frontend/src/pages/PatientManager/NewPatientForm.tsx | 2 +- frontend/src/pages/PatientManager/PatientHistory.tsx | 2 +- frontend/src/pages/PatientManager/PatientSummary.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/PatientManager/NewPatientForm.tsx b/frontend/src/pages/PatientManager/NewPatientForm.tsx index 8310263a..232ed296 100644 --- a/frontend/src/pages/PatientManager/NewPatientForm.tsx +++ b/frontend/src/pages/PatientManager/NewPatientForm.tsx @@ -365,7 +365,7 @@ const NewPatientForm = ({ htmlFor="current-state" className="block text-sm font-semibold leading-6 text-gray-900" > - Current state + Current or Most recent state
diff --git a/frontend/src/pages/PatientManager/PatientHistory.tsx b/frontend/src/pages/PatientManager/PatientHistory.tsx index 8dbf5e64..f8dc14a6 100644 --- a/frontend/src/pages/PatientManager/PatientHistory.tsx +++ b/frontend/src/pages/PatientManager/PatientHistory.tsx @@ -86,7 +86,7 @@ const PatientHistory = ({
- Current State: + Current or Most recent state
{item.Diagnosis} diff --git a/frontend/src/pages/PatientManager/PatientSummary.tsx b/frontend/src/pages/PatientManager/PatientSummary.tsx index 5550558b..16966360 100644 --- a/frontend/src/pages/PatientManager/PatientSummary.tsx +++ b/frontend/src/pages/PatientManager/PatientSummary.tsx @@ -620,7 +620,7 @@ const PatientSummary = ({
- Current State: + Current or Most recent state
{patientInfo.Diagnosis}