You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react-native/ReactCommon/react/renderer/components/textinput/platform/ios/react/renderer/components/iostextinput/conversions.h
+5-5
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ inline void fromRawValue(
34
34
result = AutocapitalizationType::Characters;
35
35
return;
36
36
}
37
-
abort();
37
+
result = AutocapitalizationType::None;
38
38
}
39
39
40
40
inlinevoidfromRawValue(
@@ -54,7 +54,7 @@ inline void fromRawValue(
54
54
result = KeyboardAppearance::Dark;
55
55
return;
56
56
}
57
-
abort();
57
+
result = KeyboardAppearance::Default;
58
58
}
59
59
60
60
inlinevoidfromRawValue(
@@ -122,7 +122,7 @@ inline void fromRawValue(
122
122
result = ReturnKeyType::Continue;
123
123
return;
124
124
}
125
-
abort();
125
+
result = ReturnKeyType::Default;
126
126
}
127
127
128
128
inlinevoidfromRawValue(
@@ -146,7 +146,7 @@ inline void fromRawValue(
146
146
result = TextInputAccessoryVisibilityMode::Always;
0 commit comments