Skip to content

Commit

Permalink
Override text-input props if set
Browse files Browse the repository at this point in the history
  • Loading branch information
rottabonus committed Oct 15, 2023
1 parent 0915f2a commit d79f162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Screens/components/NamedInputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ const NamedInputField = ({
]}
editable={true}
secureTextEntry={isSecureText}
{...textInputProps}
onFocus={handleFocus}
onBlur={() => setIsFocused(false)}
{...textInputProps}
/>
{isPasswordInput ? (
<RN.TouchableOpacity
Expand Down

0 comments on commit d79f162

Please sign in to comment.