Kaynağa Gözat

Add missing commas

Matt McDonald 6 yıl önce
ebeveyn
işleme
8880359877
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 1
    1
      ios/RCTConvert+RNPStatus.h
  2. 1
    1
      ios/RCTConvert+RNPStatus.m

+ 1
- 1
ios/RCTConvert+RNPStatus.h Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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)