File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
packages/core/src/js/playground Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1010
1111### Features
1212
13- - Introducing ` @sentry/react-native/playground ` ([ #4916 ] ( https://github.com/getsentry/sentry-react-native/pull/4916 ) , [ #4918 ] ( https://github.com/getsentry/sentry-react-native/pull/4918 ) )
13+ - Introducing ` @sentry/react-native/playground ` ([ #4916 ] ( https://github.com/getsentry/sentry-react-native/pull/4916 ) , [ #4918 ] ( https://github.com/getsentry/sentry-react-native/pull/4918 ) ))
1414
1515 The new ` withSentryPlayground ` component allows developers to verify
1616 that the SDK is properly configured and reports errors as expected.
Original file line number Diff line number Diff line change 11/* eslint-disable max-lines */
2+ import { logger } from '@sentry/core' ;
23import * as React from 'react' ;
34import {
45 Animated ,
@@ -14,7 +15,8 @@ import {
1415} from 'react-native' ;
1516
1617import { openURLInBrowser } from '../metro/openUrlInBrowser' ;
17- import { isExpoGo , isWeb } from '../utils/environment' ;
18+ import { getDevServer } from '../integrations/debugsymbolicatorutils' ;
19+ import { isExpo , isExpoGo , isWeb } from '../utils/environment' ;
1820import { bug as bugAnimation , hi as hiAnimation , thumbsup as thumbsupAnimation } from './animations' ;
1921import { nativeCrashExample , tryCatchExample , uncaughtErrorExample } from './examples' ;
2022import { bug as bugImage , hi as hiImage , thumbsup as thumbsupImage } from './images' ;
@@ -51,7 +53,7 @@ export const withSentryPlayground = <P extends object>(
5153 ) ;
5254 } ;
5355
54- Wrapper . displayName = ' withSentryPlayground()' ;
56+ Wrapper . displayName = ` withSentryPlayground()` ;
5557 return Wrapper ;
5658} ;
5759
You can’t perform that action at this time.
0 commit comments