-
{t('selectedPatient')}
+
+
+ {t('selectedPatient')}
+
{activePatientName}
{activePatient.purpose ? (
@@ -2228,7 +2264,11 @@ export function TreatmentWorkspace({
) : null}
) : (
-
+
{apptsLoading ? t('loadingAppointments') : t('selectDayWithAppointment')}
)}
diff --git a/frontend/src/types/treatment.ts b/frontend/src/types/treatment.ts
index 16432ac..2c3b1c1 100644
--- a/frontend/src/types/treatment.ts
+++ b/frontend/src/types/treatment.ts
@@ -38,6 +38,7 @@ export interface TreatmentAppointment {
patientId: string;
patientFirstName: string;
patientLastName: string;
+ patientMobile?: string | null;
providerUserId: string;
startAt: string;
endAt: string;
@@ -139,6 +140,8 @@ export interface PastTreatment {
firstName: string;
lastName: string;
isWalkIn: boolean;
+ mobile?: string | null;
+ email?: string | null;
} | null;
details: PastTreatmentDetail[];
labCases: PastLabCase[];