diff --git a/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx b/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx index cc6d23ce..41a2d053 100644 --- a/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx +++ b/www/app/[domain]/transcripts/[transcriptId]/record/page.tsx @@ -36,7 +36,7 @@ const TranscriptRecord = (details: TranscriptDetails) => { } }, []); - const transcript = useTranscript(false, details.params.transcriptId); + const transcript = useTranscript(true, details.params.transcriptId); const webRTC = useWebRTC(stream, details.params.transcriptId, true); const webSockets = useWebSockets(details.params.transcriptId);