Skip to content

Commit

Permalink
run -> runAll in runner
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi authored Oct 3, 2024
1 parent 318abdb commit 4f01b7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/keyAutoAdd/lib/keyAutoAdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class KeyAutoAdd {
this.port.onMessage.addListener(
(message: BackgroundToKeyAutoAddMessage) => {
if (message.action === 'BEGIN') {
this.run(message.payload);
this.runAll(message.payload);
}
},
);
Expand Down Expand Up @@ -121,7 +121,7 @@ export class KeyAutoAdd {
return promise;
}

private async run(payload: BeginPayload) {
private async runAll(payload: BeginPayload) {
const helpers: StepRunHelpers = {
output: <T extends StepRun>(fn: T) => {
if (!this.outputs.has(fn)) {
Expand Down

0 comments on commit 4f01b7c

Please sign in to comment.