Skip to content

Commit

Permalink
Fix missing name on NonRetriableError
Browse files Browse the repository at this point in the history
  • Loading branch information
amh4r committed Sep 29, 2023
1 parent a005210 commit 585fac6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/inngest/src/components/NonRetriableError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ export class NonRetriableError extends Error {
super(message);
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
this.cause = options?.cause;

this.name = "NonRetriableError";
}
}

0 comments on commit 585fac6

Please sign in to comment.