Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
OtavioStasiak committed Nov 14, 2024
1 parent a0839c4 commit ada0bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/containers/TextInput/FormTextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const FormTextInput = ({
underlineColorAndroid='transparent'
secureTextEntry={secureTextEntry && !showPassword}
testID={testID}
accessibilityLabel={`${accessibilityLabel ?? placeholder}${required ? ' - ' + i18n.t('Required') : ''}`}
accessibilityLabel={`${accessibilityLabel ?? placeholder}${required ? ` - ${i18n.t('Required')}` : ''}`}
placeholder={placeholder}
value={value}
placeholderTextColor={colors.fontAnnotation}
Expand Down

0 comments on commit ada0bfd

Please sign in to comment.