Features
-
Add
ignoredComponents
option toannotateReactComponents
to exclude specific components from React component annotations (#4517)// metro.config.js // for React Native const config = withSentryConfig(mergedConfig, { annotateReactComponents: { ignoredComponents: ['MyCustomComponent'] } }); // for Expo const config = getSentryExpoConfig(__dirname, { annotateReactComponents: { ignoredComponents: ['MyCustomComponent'], }, });