mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
fix: remove erroneous debug println!()
s in islands (#2402)
This commit is contained in:
parent
3e93a686f4
commit
c06f6bede2
1 changed files with 0 additions and 2 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue