Skip to content

Commit

Permalink
chore: ignore certain errors
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Oct 21, 2023
1 parent 6b41293 commit d119832
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/client/sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ init({
"Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.",
"The object can not be found here.",
/AbortError/gi,
/ResizeObserver/gi,
"ResizeObserver loop completed with undelivered notifications.",
],
integrations(integrations) {
return [...integrations, new BrowserTracing(), new Replay()];
Expand Down
2 changes: 2 additions & 0 deletions apps/client/sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ init({
"Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.",
"The object can not be found here.",
/AbortError/gi,
/ResizeObserver/gi,
"ResizeObserver loop completed with undelivered notifications.",
],
});
2 changes: 2 additions & 0 deletions apps/client/sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@ init({
"Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.",
"The object can not be found here.",
/AbortError/gi,
/ResizeObserver/gi,
"ResizeObserver loop completed with undelivered notifications.",
],
});

0 comments on commit d119832

Please sign in to comment.