diff --git a/src/Components/Facility/Consultations/DailyRounds/VirtualNursingAssistantLogUpdateCard.tsx b/src/Components/Facility/Consultations/DailyRounds/VirtualNursingAssistantLogUpdateCard.tsx index 0b8342bc26f..2b2c752c83f 100644 --- a/src/Components/Facility/Consultations/DailyRounds/VirtualNursingAssistantLogUpdateCard.tsx +++ b/src/Components/Facility/Consultations/DailyRounds/VirtualNursingAssistantLogUpdateCard.tsx @@ -33,19 +33,10 @@ interface Props { const extractVirtualNursingAssistantFields = (round?: DailyRoundsModel) => { if (!round) return; - const { - temperature, - temperature_measured_at, - bp, - resp, - spo2, - ventilator_spo2, - pulse, - } = round; + const { temperature, bp, resp, spo2, ventilator_spo2, pulse } = round; return { temperature, - temperature_measured_at, bp, resp, spo2, diff --git a/src/Components/Patient/models.tsx b/src/Components/Patient/models.tsx index 56a3fc01f2a..81a06ff659d 100644 --- a/src/Components/Patient/models.tsx +++ b/src/Components/Patient/models.tsx @@ -309,7 +309,6 @@ export interface DailyRoundsModel { pulse?: number; resp?: number; temperature?: string; - temperature_measured_at?: string; physical_examination_info?: string; other_details?: string; consultation?: number;