From 7b38339ea04503d696b5858c458136108a97aca6 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 20:06:25 +0000 Subject: [PATCH] Fix unused onAbort variable causing build failure Co-Authored-By: Danial Piterson --- src/vs/workbench/contrib/void/common/sendLLMMessageService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/void/common/sendLLMMessageService.ts b/src/vs/workbench/contrib/void/common/sendLLMMessageService.ts index 82c7b75a..8004df64 100644 --- a/src/vs/workbench/contrib/void/common/sendLLMMessageService.ts +++ b/src/vs/workbench/contrib/void/common/sendLLMMessageService.ts @@ -217,7 +217,7 @@ if (!isWeb) { ) { super(); } sendLLMMessage(params: ServiceSendLLMMessageParams): string | null { - const { onText, onFinalMessage, onError, onAbort, modelSelection } = params; + const { onText, onFinalMessage, onError, modelSelection } = params; if (modelSelection === null) { onError({ message: `Please add a provider in Void's Settings.`, fullError: null }); return null;