Skip to content

Commit 354c3a0

Browse files
authored
fix(apple): fix notification naming inconsistency (#2466)
1 parent b094686 commit 354c3a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ios/ReactTestApp/Public/ReactTestApp-DevSupport.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OBJC_EXTERN NSNotificationName const ReactAppDidFinishLaunchingNotification;
77
OBJC_EXTERN NSNotificationName const ReactAppWillInitializeReactNativeNotification;
88
OBJC_EXTERN NSNotificationName const ReactAppDidInitializeReactNativeNotification;
99

10-
OBJC_EXTERN NSNotificationName const ReactAppRuntimeReady;
10+
OBJC_EXTERN NSNotificationName const ReactAppRuntimeReadyNotification;
1111
OBJC_EXTERN NSNotificationName const ReactAppDidRegisterAppsNotification;
1212

1313
OBJC_EXTERN NSNotificationName const ReactAppSceneDidOpenURLNotification;

ios/ReactTestApp/ReactTestApp-DevSupport.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
NSNotificationName const ReactAppDidInitializeReactNativeNotification =
99
@"ReactAppDidInitializeReactNativeNotification";
1010

11-
NSNotificationName const ReactAppRuntimeReady = @"ReactAppRuntimeReady";
11+
NSNotificationName const ReactAppRuntimeReadyNotification = @"ReactAppRuntimeReadyNotification";
1212
NSNotificationName const ReactAppDidRegisterAppsNotification =
1313
@"ReactAppDidRegisterAppsNotification";
1414

0 commit comments

Comments
 (0)