diff --git a/client/src/components/Input/SpeechRecognition.tsx b/client/src/components/Input/SpeechRecognition.tsx index 1935b3257e..c753cfbfed 100644 --- a/client/src/components/Input/SpeechRecognition.tsx +++ b/client/src/components/Input/SpeechRecognition.tsx @@ -68,7 +68,9 @@ const useSpeechRecognition = (ask) => { }; useEffect(() => { + console.log('Setting up hotkeys'); hotkeys('shift+alt+l', (event, handler) => { + console.log('Hotkey triggered'); if (isSpeechSupported) { toggleListening(); }