Skip to content

Commit

Permalink
Merge pull request #7834 from coronasafe/develop
Browse files Browse the repository at this point in the history
Merge minor fix from  develop to staging v24.21.0
  • Loading branch information
gigincg authored May 16, 2024
2 parents b4ea8f5 + bda0c4e commit 546a0de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/Components/Patient/models.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 546a0de

Please sign in to comment.