From 3a9c1319c150cc5354e93228aaa35f18c4f43955 Mon Sep 17 00:00:00 2001 From: Koper Date: Thu, 14 Sep 2023 23:11:19 +0700 Subject: [PATCH] Update useWebSockets.ts --- www/app/transcripts/useWebSockets.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/app/transcripts/useWebSockets.ts b/www/app/transcripts/useWebSockets.ts index 07c0d2f5..ed691a1f 100644 --- a/www/app/transcripts/useWebSockets.ts +++ b/www/app/transcripts/useWebSockets.ts @@ -113,6 +113,10 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => { } break; + case "FINAL_SUMMARY": + console.debug("FINAL_SUMMARY event:", message.data); + break; + case "FINAL_TITLE": console.debug("FINAL_TITLE event:", message.data); break;