From 85f01cd9eb5e13d39fb80425bc48c057afc57068 Mon Sep 17 00:00:00 2001 From: SciFantastic Date: Fri, 20 Feb 2026 12:20:15 -0600 Subject: [PATCH] Fix styles --- src/sessions/transcript-events.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/sessions/transcript-events.ts b/src/sessions/transcript-events.ts index a4dc705d35b..9179713581f 100644 --- a/src/sessions/transcript-events.ts +++ b/src/sessions/transcript-events.ts @@ -6,14 +6,6 @@ type SessionTranscriptListener = (update: SessionTranscriptUpdate) => void; const SESSION_TRANSCRIPT_LISTENERS = new Set(); -/** - * Register a listener for session transcript updates. - * Returns an unsubscribe function. Listeners are guarded with try/catch - * so a throwing subscriber cannot prevent other listeners from firing. - * - * @param listener - Callback invoked with the updated session file path. - * @returns Unsubscribe function; call it to remove the listener. - */ export function onSessionTranscriptUpdate(listener: SessionTranscriptListener): () => void { SESSION_TRANSCRIPT_LISTENERS.add(listener); return () => {