Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
fix: after rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patogallaiovlabs committed Jun 9, 2021
1 parent b4f68d2 commit 3796772
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions ios/rwallet/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ @implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if ([FIRApp defaultApp] == nil) {
[FIRApp configure];
}
[RNFirebaseNotifications configure];
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"rwallet"
Expand All @@ -36,7 +32,9 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
[self.window makeKeyAndVisible];


[FIRApp configure];
if ([FIRApp defaultApp] == nil) {
[FIRApp configure];
}
[RNNotifications startMonitorNotifications];

return YES;
Expand Down

0 comments on commit 3796772

Please sign in to comment.