diff --git a/leptos_reactive/src/hydration.rs b/leptos_reactive/src/hydration.rs index d785af874..c2166787a 100644 --- a/leptos_reactive/src/hydration.rs +++ b/leptos_reactive/src/hydration.rs @@ -339,13 +339,11 @@ thread_local! { impl SharedContext { /// Whether the renderer should currently add hydration IDs. pub fn no_hydrate() -> bool { - println!("no_hydrate == {}", NO_HYDRATE.with(Cell::get)); NO_HYDRATE.with(Cell::get) } /// Sets whether the renderer should not add hydration IDs. pub fn set_no_hydrate(hydrate: bool) { - println!("set_no_hydrate == {}", hydrate); NO_HYDRATE.with(|cell| cell.set(hydrate)); }