Skip to content

Commit f936336

Browse files
committed
Fix import in react-native ios example
1 parent c98d2a3 commit f936336

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/ReactNativeExample/ios/ReactNativeExample/AppDelegate.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
#import <React/RCTBundleURLProvider.h>
1313
#import <React/RCTRootView.h>
14-
#import <React/RNSentry.h>
1514
#if __has_include(<React/RNSentry.h>)
1615
#import <React/RNSentry.h> // This is used for versions of react >= 0.40
1716
#else
@@ -36,9 +35,9 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
3635
moduleName:@"ReactNativeExample"
3736
initialProperties:nil
3837
launchOptions:launchOptions];
39-
38+
4039
[RNSentry installWithRootView:rootView];
41-
40+
4241
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
4342

4443
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];

0 commit comments

Comments
 (0)