Skip to content

Commit 76cd05a

Browse files
ci: apply automated fixes
1 parent 39d2037 commit 76cd05a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/ai/src/activities/chat/stream/processor.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,9 @@ export class StreamProcessor {
10991099
return next
11001100
})
11011101
// Rebuild only when a part object identity changed.
1102-
const partsChanged = parts.some((part, index) => part !== msg.parts[index])
1102+
const partsChanged = parts.some(
1103+
(part, index) => part !== msg.parts[index],
1104+
)
11031105
return partsChanged ? { ...msg, parts } : msg
11041106
})
11051107
}

0 commit comments

Comments
 (0)