From e572a000e870ae67d8b9d74c6c16b5cf566174cb Mon Sep 17 00:00:00 2001 From: Maria Katrin Bonde Date: Fri, 10 Jan 2025 15:09:26 +0100 Subject: [PATCH] removed console.logs --- frontend/src/components/Forecast/HoveredMonth.tsx | 2 -- frontend/src/components/Staffing/ConsultantRow.tsx | 4 ---- 2 files changed, 6 deletions(-) diff --git a/frontend/src/components/Forecast/HoveredMonth.tsx b/frontend/src/components/Forecast/HoveredMonth.tsx index 6593b1d3..a5ade355 100644 --- a/frontend/src/components/Forecast/HoveredMonth.tsx +++ b/frontend/src/components/Forecast/HoveredMonth.tsx @@ -46,8 +46,6 @@ export function HoveredMonth(props: { const freeTime = bookings.find((b) => b.month == hoveredRowMonth) ?.bookingModel.totalSellableTime; - console.log("freeTime", freeTime); - console.log(consultant.bookings); if (freeTime && freeTime > 0) { nonZeroHoursDetailedBookings.push({ bookingDetails: { diff --git a/frontend/src/components/Staffing/ConsultantRow.tsx b/frontend/src/components/Staffing/ConsultantRow.tsx index e800c062..c8926955 100644 --- a/frontend/src/components/Staffing/ConsultantRow.tsx +++ b/frontend/src/components/Staffing/ConsultantRow.tsx @@ -26,10 +26,6 @@ export default function ConsultantRows({ consultant: ConsultantReadModel; numWorkHours: number; }) { - if (consultant.bookings.length > 0 && consultant.name.startsWith("Adrian")) { - console.log("detailedBooking", consultant.detailedBooking); - console.log("bookings", consultant.bookings); - } const [currentConsultant, setCurrentConsultant] = useState(consultant); const [isListElementVisible, setIsListElementVisible] = useState(false);