liniting fix

Fixes linting issues
This commit is contained in:
Dustin Loring
2024-12-01 05:44:20 -05:00
parent eb7676577d
commit cb1fd38df6
5 changed files with 25540 additions and 7 deletions

View File

@@ -84,11 +84,11 @@ export class ActionRunner {
}
if (action.executed) {
return;
return; // No return value here
}
if (isStreaming && action.type !== 'file') {
return;
return; // No return value here
}
this.#updateAction(actionId, { ...action, ...data.action, executed: !isStreaming });
@@ -100,7 +100,6 @@ export class ActionRunner {
.catch((error) => {
console.error('Action failed:', error);
});
return this.#currentExecutionPromise;
}
async #executeAction(actionId: string, isStreaming: boolean = false) {