From 823de958916f54239d1eb4ef0e0df7bc2d33876c Mon Sep 17 00:00:00 2001 From: Joel Brock Date: Thu, 23 Apr 2026 16:23:40 -0700 Subject: [PATCH] chore: remove debug logging from keyboard selection --- content/keyboard.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/keyboard.js b/content/keyboard.js index e933eb2..c577290 100644 --- a/content/keyboard.js +++ b/content/keyboard.js @@ -87,9 +87,6 @@ window.OutlookRelook.Keyboard = (function () { var idx = findItemById(items, id); if (idx >= 0) { items[idx].classList.add('or-kb-selected'); - console.log('[Outlook Relook] Applied or-kb-selected to', id.substring(0, 20), 'hasClass:', items[idx].classList.contains('or-kb-selected')); - } else { - console.log('[Outlook Relook] Could not find item for selected id:', id.substring(0, 20)); } });