diff --git a/www/app/transcripts/recorder.tsx b/www/app/transcripts/recorder.tsx index ed86a73f..a550a840 100644 --- a/www/app/transcripts/recorder.tsx +++ b/www/app/transcripts/recorder.tsx @@ -208,12 +208,6 @@ export default function Recorder(props: RecorderProps) { if (!record) return; return record.on("stopRecording", () => { - const link = document.getElementById("download-recording"); - if (!link) return; - - link.setAttribute("href", record.getRecordedUrl()); - link.setAttribute("download", "reflector-recording.webm"); - link.style.visibility = "visible"; renderMarkers(); }); }, [record]); @@ -322,16 +316,6 @@ export default function Recorder(props: RecorderProps) { )} - - {!props.transcriptId && ( - - - - )} )} {!hasRecorded && (