Fix unused onAbort variable causing build failure

Co-Authored-By: Danial Piterson <danial.samiei@gmail.com>
This commit is contained in:
Devin AI 2026-02-16 20:06:25 +00:00
parent 16d75aa9f7
commit 7b38339ea0

View file

@ -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;