You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/common/src/utils/analytics.ts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,11 @@ export async function initializeSentry(dsn: string) {
28
28
returnSentry.init({
29
29
dsn,
30
30
release: VERSION,
31
-
ignoreErrors: ['TypeScript Server Error',/^Canceled$/],
31
+
ignoreErrors: [
32
+
'Custom Object',// Called for errors coming from sandbox (https://sentry.io/organizations/codesandbox/issues/965255074/?project=155188&query=is%3Aunresolved&statsPeriod=14d)
33
+
'TypeScript Server Error',// Called from the TSC server
34
+
/^Canceled$/,// Used by VSCode to stop currently running actions
0 commit comments