style: fix indentation in transcript-events

This commit is contained in:
SciFantastic
2026-02-17 08:36:33 -06:00
committed by Peter Steinberger
parent 2aab6dff76
commit b91a22a3fb

View File

@@ -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 */
}
}
}