Skip to content

Commit 614c22a

Browse files
committed
fix: removing throw from execution catch
1 parent a2213e4 commit 614c22a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/internal.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,9 +493,8 @@ export async function letsCandidate({
493493
HookPayload
494494
})
495495
)
496-
.catch((error: Error) => {
496+
.catch(() => {
497497
runningQueryCache.delete(key);
498-
throw error;
499498
});
500499

501500
return execution;

0 commit comments

Comments
 (0)