diff --git a/CHANGELOG.md b/CHANGELOG.md index b09146aa5..17088eefa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ ## Unreleased -### Fixed +### Fixes - Use application variant instead of variant output to hook to correct package task for modules cleanup ([#3161](https://github.com/getsentry/sentry-react-native/pull/3161)) +- Fix `isNativeAvailable` after SDK reinitialization ([#3200](https://github.com/getsentry/sentry-react-native/pull/3200)) ## 5.8.1 diff --git a/src/js/wrapper.ts b/src/js/wrapper.ts index 3677a0f6f..0d37406d6 100644 --- a/src/js/wrapper.ts +++ b/src/js/wrapper.ts @@ -449,7 +449,7 @@ export const NATIVE: SentryNativeWrapper = { }, isNativeAvailable(): boolean { - return this.enableNative && this._isModuleLoaded(RNSentry); + return this._isModuleLoaded(RNSentry); }, async captureScreenshot(): Promise {