Migrates from old keyboard option interface

This commit is contained in:
Vitor Pamplona 2025-03-14 14:20:08 -04:00
parent 337a5e3cae
commit c1399d129e
2 changed files with 2 additions and 2 deletions

View File

@ -592,7 +592,7 @@ fun UpdateZapAmountContent(
onValueChange = { postViewModel.walletConnectSecret = it }, onValueChange = { postViewModel.walletConnectSecret = it },
keyboardOptions = keyboardOptions =
KeyboardOptions( KeyboardOptions(
autoCorrect = false, autoCorrectEnabled = false,
keyboardType = KeyboardType.Password, keyboardType = KeyboardType.Password,
imeAction = ImeAction.Go, imeAction = ImeAction.Go,
), ),

View File

@ -554,7 +554,7 @@ fun KeyTextField(
onValueChange = { onValueChange(it, false) }, onValueChange = { onValueChange(it, false) },
keyboardOptions = keyboardOptions =
KeyboardOptions( KeyboardOptions(
autoCorrect = false, autoCorrectEnabled = false,
keyboardType = KeyboardType.Password, keyboardType = KeyboardType.Password,
imeAction = ImeAction.Go, imeAction = ImeAction.Go,
), ),