diff --git a/www/app/transcripts/useWebSockets.ts b/www/app/transcripts/useWebSockets.ts index a6a7a387..726aed22 100644 --- a/www/app/transcripts/useWebSockets.ts +++ b/www/app/transcripts/useWebSockets.ts @@ -80,9 +80,7 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => { switch (message.event) { case "TRANSCRIPT": if (message.data.text) { - setTranscriptText( - (message.data.translation ?? message.data.text ?? "").trim(), - ); + setTranscriptText((message.data.text ?? "").trim()); console.debug("TRANSCRIPT event:", message.data); } break;