style(agent-chat): format transcriptToMessages.test.ts with prettier - #5495
Conversation
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
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
The problem
Three lines in
web/oss/src/components/AgentChatSlice/assets/transcriptToMessages.test.tsare not prettier-formatted. That fails two CI jobs, because ESLint also runs prettier as a rule:prettier --checkreports the file.prettier/prettiererrors at lines 282 and 284.The failure originates on this branch (#5451) and is inherited by everything stacked above it: #5486 and the six fix PRs on top of that. All of them are red for this one reason.
The fix
Ran prettier on the file. Formatting only, three lines, no behavior change.
Testing
prettier --checkandeslintboth pass on the file locally.