We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452b5df commit 3777c51Copy full SHA for 3777c51
packages/common/src/utils/analytics.ts
@@ -106,6 +106,15 @@ export async function initializeSentry(dsn: string) {
106
) {
107
const { filename } = event.stacktrace.frames[0];
108
109
+ if (
110
+ filename.includes('typescript-worker') &&
111
+ event.message &&
112
+ event.message.includes('too much recursion')
113
+ ) {
114
+ // https://sentry.io/organizations/codesandbox/issues/1293123855/events/b01ee0feb7e3415a8bb81b6a9df19152/?project=155188&query=is%3Aunresolved&statsPeriod=14d
115
+ return undefined;
116
+ }
117
+
118
if (
119
filename.endsWith('codesandbox.editor.main.js') ||
120
filename.startsWith('/extensions/')
0 commit comments