Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed May 22, 2024
1 parent f41373e commit 5c56323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/src/allo/backends/allo-v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1306,9 +1306,9 @@ export class AlloV1 implements Allo {
indexingStatus: Result<null>;
}
> {
return new AlloOperation(async ({ emit }) => {
return new AlloOperation(async () => {
const result = new AlloError("Unsupported on v1");
return error(result);
return error(result, args);
});
}
}
Expand Down

0 comments on commit 5c56323

Please sign in to comment.