We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 387a8a8 commit ebe8a61Copy full SHA for ebe8a61
src/utils/keybind-utils.ts
@@ -13,7 +13,6 @@
13
export function shouldIgnoreKeystroke(): boolean {
14
const skipped = ['TEXTAREA', 'INPUT', 'SELECT'];
15
if (document.activeElement !== null && skipped.includes(document.activeElement.nodeName)) {
16
- console.log(document.activeElement);
17
return true;
18
}
19
return false;
0 commit comments