[feat]: Implement chat description editing in sidebar and header, add visual cue for active chat in sidebar

This commit is contained in:
PuneetP16
2024-11-30 15:18:29 +05:30
parent 0d49c7402b
commit 5335580646
7 changed files with 352 additions and 42 deletions

View File

@@ -100,6 +100,9 @@ export class ActionRunner {
.catch((error) => {
console.error('Action failed:', error);
});
// eslint-disable-next-line consistent-return -- TODO: fix this consistent-return error
return this.#currentExecutionPromise;
}
async #executeAction(actionId: string, isStreaming: boolean = false) {