From 40f14893b6cd009c5b3b2e7664adb8af4f582239 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Fri, 6 Jun 2025 22:51:07 +0200 Subject: [PATCH] Remove logging --- frontend/src/calendar.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/calendar.rs b/frontend/src/calendar.rs index dfb97d4..b2bd27c 100644 --- a/frontend/src/calendar.rs +++ b/frontend/src/calendar.rs @@ -285,8 +285,6 @@ fn display_month( } }; - gloo::console::log!(nb_of_weeks); - for i in 0..6 { for j in 0..7 { let day_element: Element = by_id(&format!("day-grid-{}{}", i, j)); @@ -310,7 +308,6 @@ fn display_month( day_element.set_class_name(&classes.join(" ")); } else { - gloo::console::log!("ok"); day_element.set_class_name(""); day_content.set_inner_html(""); }