diff --git a/app/components/voice-input.tsx b/app/components/voice-input.tsx index 0b5960c6d..3aeff5c01 100644 --- a/app/components/voice-input.tsx +++ b/app/components/voice-input.tsx @@ -133,14 +133,6 @@ export default function VoiceInput({ recognizer.current.recognizeOnceAsync( (result) => { onRecognizedResult(result); - console.log( - "1", - tempUserInput, - "2", - voiceInputText ?? "", - "3", - `${result.text ?? ""}`, - ); setUserInput( tempUserInput + (voiceInputText ?? "") + `${result.text ?? ""}`, );