Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Jun 19, 2024
1 parent 1313ba1 commit 815a710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Patient/DailyRounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export const DailyRounds = (props: any) => {
if (obj) {
dispatch({ type: "set_form", form: initForm });
Notification.Success({
msg: `${obj.rounds_type === "VENTILATOR" ? "Critical Care" : capitalize(obj.rounds_type)} log update details updated successfully`,
msg: `${obj.rounds_type === "VENTILATOR" ? "Critical Care" : obj.rounds_type === "DOCTORS_LOG" ? "Progress Notes" : capitalize(obj.rounds_type)} details updated successfully`,
});
if (
["NORMAL", "TELEMEDICINE", "DOCTORS_LOG"].includes(
Expand Down

0 comments on commit 815a710

Please sign in to comment.