remove debug line

This commit is contained in:
Elliott Balsley 2025-09-13 11:45:17 -07:00
parent 53b15e3e41
commit 03a6032f36
3 changed files with 0 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -5,7 +5,6 @@ const HOTKEYS: Record<string, () => void> = {
function focusGlobalSearch(): void { function focusGlobalSearch(): void {
const searchInput = document.querySelector<HTMLInputElement>('header input[name="q"]')!; const searchInput = document.querySelector<HTMLInputElement>('header input[name="q"]')!;
searchInput.focus(); searchInput.focus();
console.debug('Focused global search input');
} }
function handleKeydown(event: KeyboardEvent): void { function handleKeydown(event: KeyboardEvent): void {