Skip to content

Commit

Permalink
Removes unused temperature_measured_at field (#7829)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad authored May 16, 2024
1 parent ee15f65 commit bda0c4e
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 bda0c4e

Please sign in to comment.