Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPickering committed Jan 2, 2025
1 parent 46dee01 commit 6f0e524
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion crates/import/src/rest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,6 @@ mod tests {
let recipe_1 = recipes.get(&RecipeId::from("Query_Request_0")).unwrap();
let recipe_2 = recipes.get(&RecipeId::from("Request_1")).unwrap();

println!("{recipe_1:?}");
match (recipe_1, recipe_2) {
(
RecipeNode::Recipe(Recipe { body: body1, .. }),
Expand Down
1 change: 0 additions & 1 deletion crates/tui/src/view/common/text_box.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ impl TextBox {

/// Emit a change event. Should be called whenever text _content_ is changed
fn change(&mut self) {
println!("change");
let is_valid = self.is_valid();
if let Some(debounce) = &self.on_change_debounce {
if self.is_valid() {
Expand Down

0 comments on commit 6f0e524

Please sign in to comment.