소스 검색

fix: no comments

Jonathan Kelley 2 년 전
부모
커밋
482ae5e395
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  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() {