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
router.prefetch('/details'); // Creates a span measuring prefetch performance
36
+
37
+
// Option 2: Enable automatic prefetch tracking in the integration
38
+
Sentry.init({
39
+
integrations: [
40
+
Sentry.reactNavigationIntegration({
41
+
enablePrefetchTracking: true,
42
+
}),
43
+
],
44
+
});
45
+
```
46
+
47
+
### Fixes
48
+
49
+
- Fix `SENTRY_ALLOW_FAILURE` environment variable not being respected in Xcode build scripts ([#5616](https://github.com/getsentry/sentry-react-native/pull/5616))
50
+
- Fix iOS dSYM upload for main app in Expo EAS builds by adding inputPaths to build phase ([#5617](https://github.com/getsentry/sentry-react-native/pull/5617))
0 commit comments