Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- fixed: Missing 2-factor approve / deny scene on login
- fixed: Security check notification not reappearing after dismissal
- fixed: Fix incorrect Moonpay buy tracking values caused by deeplink handler overwrite
- fixed: Search bars automatically accepting autocorrect suggestions

## 4.43.1 (2025-02-13)

Expand Down
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export default [

'src/components/themed/SearchFooter.tsx',
'src/components/themed/SelectableRow.tsx',
'src/components/themed/SendFromFioRows.tsx',

'src/components/themed/ShareButtons.tsx',

'src/components/themed/Slider.tsx',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
accessible={true}
allowFontScaling={false}
autoCapitalize="words"
autoCorrect={false}
autoFocus={true}
collapsable={false}
defaultValue="Paycheck"
Expand Down Expand Up @@ -2570,6 +2571,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
accessible={true}
allowFontScaling={false}
autoCapitalize="words"
autoCorrect={false}
autoFocus={true}
collapsable={false}
defaultValue=""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,7 @@ Please enter your password below. A successful verification will prevent this wa
accessible={true}
allowFontScaling={false}
autoCapitalize="none"
autoCorrect={false}
autoFocus={false}
collapsable={false}
defaultValue=""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ exports[`TextInputModal should render with a blank input field 1`] = `
}
accessible={true}
allowFontScaling={false}
autoCorrect={false}
autoFocus={true}
collapsable={false}
defaultValue=""
Expand Down Expand Up @@ -1357,6 +1358,7 @@ exports[`TextInputModal should render with a populated input field 1`] = `
}
accessible={true}
allowFontScaling={false}
autoCorrect={false}
autoFocus={true}
collapsable={false}
defaultValue="initialValue"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ exports[`WalletListModal should render with loading props 1`] = `
}
accessible={true}
allowFontScaling={false}
autoCorrect={false}
autoFocus={false}
collapsable={false}
defaultValue=""
Expand Down
2 changes: 2 additions & 0 deletions src/components/modals/SurveyModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ export const SurveyModal: React.FC<Props> = props => {
))}
<Animated.View style={[styles.baseAnimatedStyle, animatedStyle]}>
<SimpleTextInput
autoCorrect
value={otherText}
onChangeText={setOtherText}
placeholder={lstrings.specify_placeholder}
Expand Down Expand Up @@ -343,6 +344,7 @@ const SurveyModal2: React.FC<{
))}
<Animated.View style={[styles.baseAnimatedStyle, animatedStyle]}>
<SimpleTextInput
autoCorrect
value={otherText}
onChangeText={setOtherText}
placeholder={lstrings.specify_placeholder}
Expand Down
2 changes: 1 addition & 1 deletion src/components/scenes/SendScene2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ const SendComponent = (props: Props): React.ReactElement => {

return (
<SendFromFioRows
navigation={navigation as NavigationBase}
navigation={navigation}
selected={fioSender.fioAddress}
memo={fioSender.memo}
memoError={fioSender.memoError}
Expand Down
4 changes: 2 additions & 2 deletions src/components/themed/FilledTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export interface FilledTextInputBaseProps extends LayoutStyleProps {
/** Defaults to 'sentences' */
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters'
autoComplete?: TextInputProps['autoComplete']
/** Defaults to 'true' */
/** Defaults to 'false' */
autoCorrect?: boolean
/** Defaults to 'true' */
blurOnSubmit?: boolean
Expand Down Expand Up @@ -231,7 +231,7 @@ export const FilledTextInput = React.forwardRef<
// TextInput:
autoCapitalize = props.secureTextEntry === true ? 'none' : undefined,
autoComplete,
autoCorrect,
autoCorrect = false,
autoFocus = false,
autoSelect = false,
blurOnClear = false,
Expand Down
Loading
Loading