Skip to content

Commit f4b1760

Browse files
committed
fix: remove window init
1 parent 074cbd7 commit f4b1760

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

.github/workflows/test-all.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: Test All
22

3-
on:
4-
workflow_dispatch:
5-
pull_request:
6-
push:
7-
branches:
8-
- main
9-
- "*-stable"
3+
# on:
4+
# workflow_dispatch:
5+
# pull_request:
6+
# push:
7+
# tags:
8+
# - 'v*'
9+
# # nightly build @ 2:15 AM UTC
10+
# schedule:
11+
# - cron: '15 2 * * *'
1012

1113
jobs:
1214
set_release_type:

packages/react-native/Libraries/AppDelegate/RCTAppDelegate.mm

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
5353
[RCTComponentViewFactory currentComponentViewFactory].thirdPartyFabricComponentsProvider = self;
5454
}
5555

56-
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
57-
UIViewController *rootViewController = [self createRootViewController];
58-
[self setRootView:rootView toRootViewController:rootViewController];
59-
self.window.rootViewController = rootViewController;
60-
self.window.windowScene.delegate = self;
61-
[self.window makeKeyAndVisible];
62-
6356
return YES;
6457
}
6558

0 commit comments

Comments
 (0)