Prechádzať zdrojové kódy

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

Nick Mosher 2 rokov pred
rodič
commit
b48cfe5730
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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;
                 }