Skip to content

Commit

Permalink
fix: change default lineLimits for text fields to be single-line (#3095)
Browse files Browse the repository at this point in the history
  • Loading branch information
saleniuk authored Jun 12, 2024
1 parent 813a43c commit a7f127f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ internal fun WireTextField(
trailingIcon: @Composable (() -> Unit)? = null,
state: WireTextFieldState = WireTextFieldState.Default,
autoFillType: WireAutoFillType = WireAutoFillType.None,
lineLimits: TextFieldLineLimits = TextFieldLineLimits.Default,
lineLimits: TextFieldLineLimits = TextFieldLineLimits.SingleLine,
inputTransformation: InputTransformation = InputTransformation.maxLength(8000),
outputTransformation: OutputTransformation? = null,
keyboardOptions: KeyboardOptions = KeyboardOptions.DefaultText,
Expand Down

0 comments on commit a7f127f

Please sign in to comment.