We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca635c commit 929b774Copy full SHA for 929b774
1 file changed
src/core/agent.ts
@@ -3090,7 +3090,7 @@ If lint or tests fail, report the issues but do NOT commit.`;
3090
const { createInkRenderer } = await import(/* @vite-ignore */ inkPath);
3091
// Create and start InkRenderer (only in TTY mode)
3092
this.inkRenderer = createInkRenderer({
3093
- onInstruction: (text) => {
+ onInstruction: (text: string) => {
3094
// Queue the instruction in InkRenderer (it manages its own queue)
3095
this.inkRenderer?.addQueuedInstruction(text);
3096
},
0 commit comments