async function stopPlaying()

in frontend/src/hooks/useAudio.ts [73:77]


  async function stopPlaying() {
    stoppedManually.current = true;
    await wavPlayer.current?.interrupt();
    setPlaybackFrequencies(Array.from({ length: 30 }, () => 0));
  }