We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf8ea3 commit a24f748Copy full SHA for a24f748
1 file changed
src/CodexEventHandler.ts
@@ -187,12 +187,14 @@ export class CodexEventHandler {
187
title: "Read file",
188
locations: [{path: commandAction.path}],
189
};
190
- } else if (commandAction.type === "search" && commandAction.query) return {
191
- sessionUpdate: "tool_call",
192
- toolCallId: id,
193
- status: "in_progress",
194
- kind: "search",
195
- title: `Search '${commandAction.query}'`,
+ } else if (commandAction.type === "search" && commandAction.query) {
+ return {
+ sessionUpdate: "tool_call",
+ toolCallId: id,
+ status: "in_progress",
+ kind: "search",
196
+ title: `Search '${commandAction.query}'`,
197
+ }
198
}
199
return {
200
sessionUpdate: "tool_call",
0 commit comments