Merge pull request #8 from danialsamiei/devin/1771272361-fix-unused-var

Fix build: remove unused onAbort variable
This commit is contained in:
Danial Samiei 2026-02-16 23:38:45 +03:30 committed by GitHub
commit 7a7c654f2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;