perf: remove console.log

This commit is contained in:
Javier Segarra 2024-09-02 09:34:33 +02:00
parent d8e3f9dfd9
commit d3ab56184b
1 changed files with 0 additions and 6 deletions

View File

@ -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]);
}