Skip to content

Commit fdd644a

Browse files
jerryliang64claude
andcommitted
style: fix array-bracket-spacing lint errors
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ccbc4d1 commit fdd644a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/agent-runtime/src/MessageConverter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ export class MessageConverter {
5454
if (prev && prev.type === ContentBlockType.Text && block.type === ContentBlockType.Text) {
5555
prev.text = {
5656
value: prev.text.value + block.text.value,
57-
annotations: [...prev.text.annotations, ...block.text.annotations],
57+
annotations: [ ...prev.text.annotations, ...block.text.annotations ],
5858
};
5959
} else {
6060
result.push({
6161
...block,
62-
text: { ...block.text, annotations: [...block.text.annotations] },
62+
text: { ...block.text, annotations: [ ...block.text.annotations ] },
6363
});
6464
}
6565
}

0 commit comments

Comments
 (0)