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 616915b commit 15fdf09Copy full SHA for 15fdf09
packages/core/src/integrations/metadata.ts
@@ -33,7 +33,7 @@ export const moduleMetadataIntegration = defineIntegration(() => {
33
34
client.on('applyFrameMetadata', event => {
35
// Only apply stack frame metadata to error events
36
- if (event.type !== undefined) {
+ if (event.type) {
37
return;
38
}
39
packages/core/src/integrations/third-party-errors-filter.ts
@@ -56,7 +56,7 @@ export const thirdPartyErrorFilterIntegration = defineIntegration((options: Opti
56
57
58
59
60
61
62
0 commit comments