From d3ab56184be889e4cae187bd1a60f0a65f199ce5 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 2 Sep 2024 09:34:33 +0200 Subject: [PATCH] perf: remove console.log --- src/boot/mainShortcutMixin.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/boot/mainShortcutMixin.js b/src/boot/mainShortcutMixin.js index 4f60050c4..c4d37fd73 100644 --- a/src/boot/mainShortcutMixin.js +++ b/src/boot/mainShortcutMixin.js @@ -13,12 +13,6 @@ export default { const handleKeyDown = (event) => { const { ctrlKey, altKey, key } = event; event.preventDefault(); - - const combination = `${ctrlKey ? 'Ctrl+' : ''}${ - altKey ? 'Alt+' : '' - }${key.toLowerCase()}`; - console.log(ctrlKey, altKey, key, combination); - if (ctrlKey && altKey && keyBindingMap[key]) { router.push(keyBindingMap[key]); }