From 54e69474e10dda43e29c5cae4e2ebe45956e9e69 Mon Sep 17 00:00:00 2001 From: Devdeep Ghosh Date: Fri, 26 Apr 2024 13:27:46 +0530 Subject: [PATCH] removed unncessary console.log --- src/Components/Facility/DoctorVideoSlideover.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Components/Facility/DoctorVideoSlideover.tsx b/src/Components/Facility/DoctorVideoSlideover.tsx index f23a18d553b..9e1e64bb610 100644 --- a/src/Components/Facility/DoctorVideoSlideover.tsx +++ b/src/Components/Facility/DoctorVideoSlideover.tsx @@ -22,7 +22,6 @@ const courtesyTitle = (user: UserAssignedModel) => { /* TODO: Discuss courtesy title for gender number 2 appropirately */ const genderSalutation = user.gender === 0 ? "Mr" : user.gender === 1 ? "Ms" : "Hey"; - console.log(genderSalutation); return user.user_type === "Doctor" ? "Dr" : genderSalutation; };