@@ -79,7 +79,9 @@ export default function TabOneScreen() {
7979 title = "Native Crash"
8080 onPress = { ( ) => {
8181 if ( isRunningInExpoGo ( ) ) {
82- console . warn ( 'Not supported in Expo Go. Build the application to test this feature.' ) ;
82+ console . warn (
83+ 'Not supported in Expo Go. Build the application to test this feature.' ,
84+ ) ;
8385 return ;
8486 }
8587 Sentry . nativeCrash ( ) ;
@@ -138,7 +140,9 @@ export default function TabOneScreen() {
138140 < Button
139141 title = "Send count metric with attributes"
140142 onPress = { ( ) => {
141- Sentry . metrics . count ( 'count_metric' , 1 , { attributes : { from_test_app : true } } ) ;
143+ Sentry . metrics . count ( 'count_metric' , 1 , {
144+ attributes : { from_test_app : true } ,
145+ } ) ;
142146 } }
143147 />
144148 </ View >
@@ -184,7 +188,9 @@ export default function TabOneScreen() {
184188 string : 'string' ,
185189 bigint : BigInt ( 123 ) ,
186190 } ) ;
187- Sentry . captureMessage ( 'Message with different types of tags globally' ) ;
191+ Sentry . captureMessage (
192+ 'Message with different types of tags globally' ,
193+ ) ;
188194 Sentry . setTags ( {
189195 number : undefined ,
190196 boolean : undefined ,
@@ -226,7 +232,11 @@ export default function TabOneScreen() {
226232 Sentry . logger . warn ( 'expo warn log' ) ;
227233 Sentry . logger . error ( 'expo error log' ) ;
228234
229- Sentry . logger . info ( 'expo info log with data' , { database : 'admin' , number : 123 , obj : { password : 'admin' } } ) ;
235+ Sentry . logger . info ( 'expo info log with data' , {
236+ database : 'admin' ,
237+ number : 123 ,
238+ obj : { password : 'admin' } ,
239+ } ) ;
230240 } }
231241 />
232242 </ View >
0 commit comments