소스 검색

Add missing commas

Matt McDonald 7 년 전
부모
커밋
8880359877
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    1
      ios/RCTConvert+RNPStatus.h
  2. 1
    1
      ios/RCTConvert+RNPStatus.m

+ 1
- 1
ios/RCTConvert+RNPStatus.h 파일 보기

@@ -33,7 +33,7 @@ typedef NS_ENUM(NSInteger, RNPType) {
33 33
     RNPTypeNotification,
34 34
     RNPTypeBackgroundRefresh,
35 35
     RNPTypeSpeechRecognition,
36
-    RNPTypeMediaLibrary
36
+    RNPTypeMediaLibrary,
37 37
     RNPTypeMotion
38 38
 };
39 39
 

+ 1
- 1
ios/RCTConvert+RNPStatus.m 파일 보기

@@ -21,7 +21,7 @@ RCT_ENUM_CONVERTER(RNPType, (@{ @"location" : @(RNPTypeLocation),
21 21
                                 @"notification" : @(RNPTypeNotification),
22 22
                                 @"backgroundRefresh": @(RNPTypeBackgroundRefresh),
23 23
                                 @"speechRecognition": @(RNPTypeSpeechRecognition),
24
-                                @"mediaLibrary": @(RNPTypeMediaLibrary)
24
+                                @"mediaLibrary": @(RNPTypeMediaLibrary),
25 25
                                 @"motion": @(RNPTypeMotion)
26 26
                                 }),
27 27
                                 RNPTypeUnknown, integerValue)