We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55e5fda commit b1e8712Copy full SHA for b1e8712
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## Unreleased
4
5
+### Fixes
6
+
7
+- Allow disabling native on RNNA ([#2978](https://github.com/getsentry/sentry-react-native/pull/2978))
8
9
### Dependencies
10
11
- Bump JavaScript SDK from v7.47.0 to v7.48.0 ([#2975](https://github.com/getsentry/sentry-react-native/pull/2975)
src/js/wrapper.ts
@@ -27,7 +27,7 @@ import { isTurboModuleEnabled } from './utils/environment';
27
import { utf8ToBytes } from './vendor';
28
29
const RNSentry: Spec | undefined = isTurboModuleEnabled()
30
- ? TurboModuleRegistry.getEnforcing<Spec>('RNSentry')
+ ? TurboModuleRegistry.get<Spec>('RNSentry')
31
: NativeModules.RNSentry;
32
33
export interface Screenshot {
0 commit comments