public stopRecognition()

in src/features/chat-page/chat-input/speech/use-speech-to-text.ts [63:68]


  public stopRecognition() {
    if (speechRecognizer) {
      speechRecognizer.stopContinuousRecognitionAsync();
      this.isMicrophoneReady = false;
    }
  }