Skip to content

Commit

Permalink
excluded the action from execution pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodacus committed Nov 17, 2024
1 parent 17cfc16 commit c0873bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/lib/stores/workbench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ export class WorkbenchStore {
this.artifacts.setKey(messageId, { ...artifact, ...state });
}
addAction(data: ActionCallbackData) {
this.addToExecutionQueue(()=>this._addAction(data))
this._addAction(data)
// this.addToExecutionQueue(()=>this._addAction(data))
}
async _addAction(data: ActionCallbackData) {
const { messageId } = data;
Expand Down

0 comments on commit c0873bc

Please sign in to comment.