From 769efc20d13d29cd8991ae7014026f88f9f85144 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Sun, 28 May 2023 12:43:50 -0700 Subject: [PATCH] fix(reflow): remove debug macro call (#198) This was accidentally left in the previous commit and causes all the demos to fail. --- src/widgets/reflow.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widgets/reflow.rs b/src/widgets/reflow.rs index 0ebdaf9b..5c006256 100644 --- a/src/widgets/reflow.rs +++ b/src/widgets/reflow.rs @@ -182,7 +182,6 @@ where // Append empty line if there was nothing to wrap in the first place wrapped_lines.push(vec![]); } - dbg!(&wrapped_lines); self.wrapped_lines = Some(wrapped_lines.into_iter()); } else {