Explorar el Código

fix: Remove dbg that was causing TUI rendering problems (#1085)

Nick Mosher hace 2 años
padre
commit
b48cfe5730
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/core/src/virtual_dom.rs

+ 1 - 1
packages/core/src/virtual_dom.rs

@@ -426,7 +426,7 @@ impl VirtualDom {
                         }
                     }
 
-                    parent_path = dbg!(template.parent).and_then(|id| self.elements.get(id.0));
+                    parent_path = template.parent.and_then(|id| self.elements.get(id.0));
                 } else {
                     break;
                 }