From b91a22a3fb025372018592cc64f42c5be24e2d1f Mon Sep 17 00:00:00 2001 From: SciFantastic Date: Tue, 17 Feb 2026 08:36:33 -0600 Subject: [PATCH] style: fix indentation in transcript-events --- src/sessions/transcript-events.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/sessions/transcript-events.ts b/src/sessions/transcript-events.ts index ba6c9ebcfa1..9179713581f 100644 --- a/src/sessions/transcript-events.ts +++ b/src/sessions/transcript-events.ts @@ -19,11 +19,11 @@ export function emitSessionTranscriptUpdate(sessionFile: string): void { return; } const update = { sessionFile: trimmed }; - for (const listener of SESSION_TRANSCRIPT_LISTENERS) { - try { - listener(update); - } catch { - /* ignore */ - } - } + for (const listener of SESSION_TRANSCRIPT_LISTENERS) { + try { + listener(update); + } catch { + /* ignore */ + } + } }