fix(reflow): remove debug macro call (#198)

This was accidentally left in the previous commit and causes all the
demos to fail.
This commit is contained in:
Josh McKinney 2023-05-28 12:43:50 -07:00 committed by GitHub
parent 32e416ea95
commit 769efc20d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {