Explorar el Código

fix: no comments

Jonathan Kelley hace 2 años
padre
commit
482ae5e395
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      packages/core/src/create.rs

+ 1 - 4
packages/core/src/create.rs

@@ -134,10 +134,7 @@ impl<'b> VirtualDom {
     ) {
         let (start, end) = match collect_dyn_node_range(dynamic_nodes, root_idx) {
             Some((a, b)) => (a, b),
-            None => {
-                println!("No dynamic nodes found for root {}", root_idx);
-                return;
-            }
+            None => return,
         };
 
         for idx in (start..=end).rev() {