Remove debug

This commit is contained in:
Karina Kwiatek 2023-04-29 09:21:48 +02:00
parent 655b822e54
commit 79e742ce1e
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@ import { install } from '@github/hotkey'
export default function (): void {
document.addEventListener('turbo:load', () => {
console.debug("Init Hotkey.")
document.querySelectorAll('[data-hotkey]').forEach(el => install(el as HTMLElement));
});
}