Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/pages/PatientManager/NewPatientForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
</label>
</div>
<div className="mr-6 md:mr-0 md:w-[500px] md:pl-16">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/PatientManager/PatientHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const PatientHistory = ({
</div>
<div className="flex">
<dt className="mr-2 sm:mr-4 text-sm font-extrabold leading-6 text-gray-900">
Current State:
Current or Most recent state
</dt>
<dd className="text-sm leading-6 text-gray-700">
{item.Diagnosis}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/PatientManager/PatientSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ const PatientSummary = ({
<div className="flex-row justify-between py-6 border-b border-gray-900/10 md:flex">
<div className="flex w-full md:p-0">
<dt className="w-1/2 text-sm font-medium leading-6 text-gray-900">
Current State:
Current or Most recent state
</dt>
<dd className="text-sm leading-6 text-gray-700 sm:col-span-2 sm:mt-0">
{patientInfo.Diagnosis}
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/pages/PatientManager/PatientTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,5 @@ export interface NewPatientInfo {
export enum Diagnosis {
Manic = "Manic",
Depressed = "Depressed",
Hypomanic = "Hypomanic",
Euthymic = "Euthymic",
Hypomanic = "Hypomanic"
}