From d7653d03cb6fbc1bcf5b3614f5ae41d685e08ea0 Mon Sep 17 00:00:00 2001 From: Koper Date: Tue, 26 Sep 2023 15:49:31 +0100 Subject: [PATCH] Topic markers now appear on the waveform of saved transcripts --- www/app/transcripts/recorder.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/app/transcripts/recorder.tsx b/www/app/transcripts/recorder.tsx index 9338a9e8..52ad7294 100644 --- a/www/app/transcripts/recorder.tsx +++ b/www/app/transcripts/recorder.tsx @@ -138,7 +138,7 @@ export default function Recorder(props: RecorderProps) { useEffect(() => { topicsRef.current = props.topics; if (!isRecording) renderMarkers(); - }, [props.topics]); + }, [props.topics, waveRegions]); const renderMarkers = () => { if (!waveRegions) return;