From 75e60b852d1b834c35e415597829c1bf88a4e98e Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Thu, 23 Jan 2025 18:18:42 +0100 Subject: [PATCH] Remove unnecessary dbg --- crates/store/src/contact_birthday_store.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/store/src/contact_birthday_store.rs b/crates/store/src/contact_birthday_store.rs index 9c16545..117d015 100644 --- a/crates/store/src/contact_birthday_store.rs +++ b/crates/store/src/contact_birthday_store.rs @@ -121,7 +121,6 @@ impl CalendarStore for ContactBirthdayStore { object_id: &str, ) -> Result { let (addressobject_id, date_type) = object_id.rsplit_once("-").ok_or(Error::NotFound)?; - dbg!(addressobject_id, date_type); self.0 .get_object(principal, cal_id, addressobject_id) .await?