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}
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"
}