From 65c3a05d844af1e60f6eab2d67188fab1789f783 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Fri, 18 Aug 2023 17:57:03 +0200 Subject: [PATCH] chore(core): cleanup --- packages/core/src/composables/useKeyPress.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/core/src/composables/useKeyPress.ts b/packages/core/src/composables/useKeyPress.ts index 71a727a1..50b0b8b2 100644 --- a/packages/core/src/composables/useKeyPress.ts +++ b/packages/core/src/composables/useKeyPress.ts @@ -40,8 +40,6 @@ function isKeyMatch(pressedKey: string, keyToMatch: string, pressedKeys: Set): KeyPredicate { return (event: KeyboardEvent) => { - console.log(event.type) - // if the keyFilter is an array of multiple keys, we need to check each possible key combination if (Array.isArray(keyFilter)) { return keyFilter.some((key) => isKeyMatch(event.key, key, pressedKeys, event.type === 'keyup'))