function scrollToBottom()

in src/app/components/Transcript.tsx [28:32]


  function scrollToBottom() {
    if (transcriptRef.current) {
      transcriptRef.current.scrollTop = transcriptRef.current.scrollHeight;
    }
  }