Clean up prints

This commit is contained in:
Mikayla Maki 2022-07-14 17:23:43 -07:00
parent 98651c4b86
commit 1935208de6
4 changed files with 3 additions and 6 deletions

View file

@ -384,9 +384,8 @@ impl Element for TerminalEl {
self.connection
.upgrade(cx.app)
.map(|connection| {
connection.update(cx.app, |connection, _| {
connection.try_keystroke(dbg!(keystroke))
})
connection
.update(cx.app, |connection, _| connection.try_keystroke(keystroke))
})
.unwrap_or(false)
}