Skip to content

Commit 4de246c

Browse files
committed
Ignore another error in sentry
1 parent ebfb20d commit 4de246c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/common/src/utils/analytics.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,13 @@ export async function initializeSentry(dsn: string) {
125125
return undefined;
126126
}
127127

128+
if (
129+
event.message &&
130+
event.message.startsWith('Unexpected frame by generating stack.')
131+
) {
132+
// A firefox error with error-polyfill, not critical. Referenced here: https://sentry.io/organizations/codesandbox/issues/1293236389/?project=155188&query=is%3Aunresolved
133+
}
134+
128135
return event;
129136
},
130137
});

0 commit comments

Comments
 (0)