Skip to content

Commit

Permalink
Fix translations for InputAge helper text
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth Agarwal authored and xavimolloy committed Jul 4, 2024
1 parent bb2267e commit 9cbc14e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ fun InputAge(
.testTag("INPUT_AGE_TEXT_FIELD")
.fillMaxWidth(),
inputTextValue = getTextFieldValue(uiModel.inputType),
helper = helperText,
helper = if (helperText != null) provideStringResource(helperText).lowercase() else null,
isSingleLine = true,
helperStyle = helperStyle,
onInputChanged = { newText ->
Expand Down

0 comments on commit 9cbc14e

Please sign in to comment.