[ios][remoteconfig] Fix another compilation error
This commit is contained in:
parent
202ad29f1c
commit
5ad3802627
|
@ -34,10 +34,6 @@ NSDictionary *convertFIRRemoteConfigValueToNSDictionary(FIRRemoteConfigValue *va
|
|||
return @{@"stringValue": value.stringValue ?: [NSNull null], @"numberValue": value.numberValue ?: [NSNull null], @"dataValue": value.dataValue ? [value.dataValue base64EncodedStringWithOptions:0] : [NSNull null], @"boolValue": @(value.boolValue), @"source": convertFIRRemoteConfigSourceToNSString(value.source)};
|
||||
}
|
||||
|
||||
@property(nonatomic, readwrite, weak) FIRRemoteConfig *remoteConfig;
|
||||
|
||||
@end
|
||||
|
||||
@implementation RNFirebaseRemoteConfig
|
||||
|
||||
RCT_EXPORT_MODULE(RNFirebaseRemoteConfig);
|
||||
|
|
Loading…
Reference in New Issue