diff --git a/crates/gpui2/src/interactive.rs b/crates/gpui2/src/interactive.rs index 40d247f32b..a546c1b40b 100644 --- a/crates/gpui2/src/interactive.rs +++ b/crates/gpui2/src/interactive.rs @@ -414,14 +414,10 @@ pub trait ElementInteractivity: 'static { Box::new(move |_, key_down, context, phase, cx| { if phase == DispatchPhase::Bubble { let key_down = key_down.downcast_ref::().unwrap(); - dbg!(key_down); if let KeyMatch::Some(action) = cx.match_keystroke(&global_id, &key_down.keystroke, context) { - dbg!(&action); return Some(action); - } else { - dbg!("none"); } }