Skip to content

Commit

Permalink
fix: removing throw from execution catch
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadienvan committed Dec 9, 2024
1 parent a2213e4 commit 614c22a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,8 @@ export async function letsCandidate({
HookPayload
})
)
.catch((error: Error) => {
.catch(() => {
runningQueryCache.delete(key);
throw error;
});

return execution;
Expand Down

0 comments on commit 614c22a

Please sign in to comment.