File tree 7 files changed +16
-21
lines changed
use-note-privacy-mutation
7 files changed +16
-21
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ function App() {
18
18
return < AppContainer /> ;
19
19
}
20
20
21
- export default Sentry . Native . wrap ( App ) ;
21
+ export default Sentry . wrap ( App ) ;
Original file line number Diff line number Diff line change @@ -27,21 +27,17 @@ export default ({ config }: ConfigContext): ExpoConfig => {
27
27
} ,
28
28
] ,
29
29
"expo-localization" ,
30
- "sentry-expo" ,
31
30
"expo-notifications" ,
32
31
"expo-font" ,
33
- ] ,
34
- hooks : {
35
- postPublish : [
32
+ [
33
+ "@sentry/react-native/expo" ,
36
34
{
37
- config : {
38
- organization : process . env . SENTRY_ORG ,
39
- project : process . env . SENTRY_PROJECT ,
40
- } ,
41
- file : "sentry-expo/upload-sourcemaps" ,
35
+ authToken : process . env . SENTRY_AUTH_TOKEN ,
36
+ organization : process . env . SENTRY_ORG ,
37
+ project : process . env . SENTRY_PROJECT ,
42
38
} ,
43
39
] ,
44
- } ,
40
+ ] ,
45
41
android : {
46
42
adaptiveIcon : {
47
43
foregroundImage : "./assets/adaptive-icon.png" ,
Original file line number Diff line number Diff line change 1
1
// Learn more https://docs.expo.io/guides/customizing-metro
2
- const { getDefaultConfig } = require ( "expo/metro-config " ) ;
2
+ const { getSentryExpoConfig } = require ( "@sentry/react-native/metro " ) ;
3
3
4
4
/** @type {import('expo/metro-config').MetroConfig } */
5
- const defaultConfig = getDefaultConfig ( __dirname , {
5
+ const defaultConfig = getSentryExpoConfig ( __dirname , {
6
6
// [Web-only]: Enables CSS support in Metro.
7
7
isCSSEnabled : true ,
8
8
} ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export default function useNoteForm(note: Note) {
31
31
id : note . id ,
32
32
} ) ;
33
33
} catch ( e ) {
34
- Sentry . Native . captureException ( e ) ;
34
+ Sentry . captureException ( e ) ;
35
35
}
36
36
setSubmitting ( false ) ;
37
37
} ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async function toggleNotePrivacy({ note }: { note: Note }) {
26
26
await NoteService . update ( note . id ! , { is_private : isPrivate } ) ;
27
27
return isPrivate ;
28
28
} catch ( e ) {
29
- Sentry . Native . captureException ( e ) ;
29
+ Sentry . captureException ( e ) ;
30
30
return false ;
31
31
}
32
32
}
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ async function updateNote(input: UpdateNoteMutationInput) {
24
24
export default function useUpdateNoteMutation ( ) {
25
25
return useMutation ( updateNote , {
26
26
onError ( error , variables , context ) {
27
- Sentry . Native . captureException ( error , {
27
+ Sentry . captureException ( error , {
28
28
extra : { variables, context } ,
29
29
} ) ;
30
30
} ,
Original file line number Diff line number Diff line change 1
- import * as Sentry from "sentry-expo " ;
1
+ import * as Sentry from "@ sentry/react-native " ;
2
2
3
3
import { config } from "config" ;
4
4
5
- const routingInstrumentation =
6
- new Sentry . Native . ReactNavigationInstrumentation ( ) ;
5
+ const routingInstrumentation = new Sentry . ReactNavigationInstrumentation ( ) ;
7
6
8
- Sentry . Native . init ( {
7
+ Sentry . init ( {
9
8
integrations : [
10
- new Sentry . Native . ReactNativeTracing ( {
9
+ new Sentry . ReactNativeTracing ( {
11
10
routingInstrumentation,
12
11
} ) ,
13
12
] ,
You can’t perform that action at this time.
0 commit comments