Skip to content

Commit 3f6c087

Browse files
Update src/core/prompts/tools/index.ts
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
1 parent 73ef45e commit 3f6c087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/prompts/tools/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const toolDescriptionMap: Record<string, (args: ToolArgs) => Promise<string | un
9797
apply_diff: async (args) => {
9898
const overrideContent = await readToolOverrideWithArgs(
9999
args.cwd,
100-
`apply_diff${args.diffStrategy?.getName()}`,
100+
`apply_diff${args.diffStrategy ? args.diffStrategy.getName() : ''}`,
101101
args,
102102
)
103103
return (

0 commit comments

Comments
 (0)