Skip to content

Commit

Permalink
fix(dashboard): run queue invocations safely
Browse files Browse the repository at this point in the history
  • Loading branch information
ChmaraX committed Dec 9, 2024
1 parent f5b39b8 commit eb9ea24
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/dashboard/src/hooks/use-invocation-queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export function useInvocationQueue<T extends CallbackFunction = CallbackFunction
await invocation();
} catch (error) {
// If the invocation fails, we want to log the error and continue with the next invocation
console.error('Error processing queue item:', error);
Sentry.captureException(error);
}
}, []);
Expand Down

0 comments on commit eb9ea24

Please sign in to comment.