public stopPlaying()

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


  public stopPlaying() {
    this.isPlaying = false;
    if (player) {
      player.pause();
    }
  }