Skip to content

Commit

Permalink
removed console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaBonde committed Jan 10, 2025
1 parent 62a6fae commit e572a00
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions frontend/src/components/Forecast/HoveredMonth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
4 changes: 0 additions & 4 deletions frontend/src/components/Staffing/ConsultantRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<ConsultantReadModel>(consultant);
const [isListElementVisible, setIsListElementVisible] = useState(false);
Expand Down

0 comments on commit e572a00

Please sign in to comment.