Problem
pnpm lint fails on CI due to a Prettier formatting violation in packages/server/src/utils/index.ts at line 668. Trailing whitespace on that line is flagged as an error.
Detected in Node CI run #24365728276:
X Delete `················` packages/server/src/utils/index.ts#668
Line 668 context — trailing whitespace after the finalQuestion assignment:
const finalQuestion = uploadedFilesContent ? `${uploadedFilesContent}\n\n${question}` : question
← trailing whitespace here
Fix
pnpm prettier --write packages/server/src/utils/index.ts
Impact
- Blocks Node CI (lint) from passing on any PR
- Pre-existing since at least March 20, 2026
Problem
pnpm lintfails on CI due to a Prettier formatting violation inpackages/server/src/utils/index.tsat line 668. Trailing whitespace on that line is flagged as an error.Detected in Node CI run #24365728276:
Line 668 context — trailing whitespace after the
finalQuestionassignment:Fix
Impact