Skip to content

Commit e9e2c8c

Browse files
fix(expo): Use @sentry/react-native/expo as plugin name in expo upload (#3515)
1 parent 2684f2c commit e9e2c8c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Fixes
66

77
- Make `getSentryExpoConfig` options parameter optional ([#3514](https://github.com/getsentry/sentry-react-native/pull/3514))
8+
- Use `@sentry/react-native/expo` as plugin name in `expo-upload-sourcemaps.js` ([#3515](https://github.com/getsentry/sentry-react-native/pull/3515))
89

910
## 5.16.0-alpha.3
1011

scripts/expo-upload-sourcemaps.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function getSentryPluginPropertiesFromExpoConfig() {
2727
return false;
2828
}
2929
const [pluginName] = plugin;
30-
return pluginName === '@sentry/react-native';
30+
return pluginName === '@sentry/react-native/expo';
3131
});
3232

3333
if (!sentryPlugin) {

0 commit comments

Comments
 (0)