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 95f5b26 commit 39c5bbfCopy full SHA for 39c5bbf
1 file changed
extensions/codex/src/app-server/approval-bridge.ts
@@ -585,7 +585,10 @@ function isSupportedAppServerApprovalMethod(method: string): boolean {
585
}
586
587
function emitApprovalEvent(params: EmbeddedRunAttemptParams, data: AgentApprovalEventData): void {
588
- params.onAgentEvent?.({ stream: "approval", data: data as unknown as Record<string, unknown> });
+ void params.onAgentEvent?.({
589
+ stream: "approval",
590
+ data: data as unknown as Record<string, unknown>,
591
+ });
592
593
594
function readDisplayCommandPreview(
0 commit comments