From f44567397f54f353c7921d7319e407fa7b5c32f2 Mon Sep 17 00:00:00 2001 From: Mahmoud Mabrouk Date: Sat, 25 Jul 2026 00:07:22 +0200 Subject: [PATCH] style(agent-chat): format transcriptToMessages.test.ts with prettier Three lines in this test are not prettier-formatted, which fails both the TypeScript format job and the TypeScript lint job (eslint runs prettier as a rule). The red is inherited by every PR stacked above this branch, including #5486 and the six fixes on top of it. Formatting only, no behavior change. Claude-Session: https://claude.ai/code/session_01KM69J7uHafgciiN5zfG7qR --- .../AgentChatSlice/assets/transcriptToMessages.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/oss/src/components/AgentChatSlice/assets/transcriptToMessages.test.ts b/web/oss/src/components/AgentChatSlice/assets/transcriptToMessages.test.ts index 2429a036a0..8b09a0d99a 100644 --- a/web/oss/src/components/AgentChatSlice/assets/transcriptToMessages.test.ts +++ b/web/oss/src/components/AgentChatSlice/assets/transcriptToMessages.test.ts @@ -279,9 +279,9 @@ describe("transcriptToMessages approval hydration", () => { // "View full trace" on the merged turn links to the RESUME trace (where the tool ran), // not the paused turn's trace. - expect( - (assistant as unknown as {metadata?: {traceId?: string}}).metadata?.traceId, - ).toBe("trace-resume") + expect((assistant as unknown as {metadata?: {traceId?: string}}).metadata?.traceId).toBe( + "trace-resume", + ) }) })