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

This commit is contained in:
Nick Mosher 2023-06-19 09:29:29 -04:00 committed by GitHub
parent f63220019d
commit b48cfe5730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}