Parcourir la source

Remove hardcoded title.fontSize to reset to defaults (#3080)

Dima Loktev il y a 6 ans
Parent
révision
0d41a06c73
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      lib/ios/RNNTitleOptions.m

+ 1
- 1
lib/ios/RNNTitleOptions.m Voir le fichier

@@ -43,7 +43,7 @@
43 43
 }
44 44
 
45 45
 - (NSNumber *)fontSize {
46
-	return _fontSize ? _fontSize : @(20);
46
+	return _fontSize ? _fontSize : nil;
47 47
 }
48 48
 
49 49
 @end