Skip to content

Commit 589a657

Browse files
fix(scripts): pass tagId to createToolDropTarget in context-dump
The placeholder-unification + boundary work added a required tagId arg to createToolDropTarget; this scripts/ caller (covered only by tsconfig.scripts.json, not the src-only local tsc) was missed and broke CI's Check (plugin) typecheck. Co-authored-by: Alfonso [Magic Context] <288211368+alfonso-magic-context@users.noreply.github.com>
1 parent d7e10db commit 589a657

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/plugin/scripts/context-dump/apply-transforms.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export function applyTransforms(
206206

207207
for (const [callId, tagNumber] of toolTagByCallId) {
208208
const thinkingParts = toolThinkingByCallId.get(callId) ?? []
209-
targets.set(tagNumber, createToolDropTarget(callId, thinkingParts, toolCallIndex, batch))
209+
targets.set(tagNumber, createToolDropTarget(callId, thinkingParts, toolCallIndex, batch, tagNumber))
210210
}
211211

212212
const missingDroppedTags = tags.filter(

0 commit comments

Comments
 (0)