Skip to content

Commit 54f049b

Browse files
committed
chore(withdraw): set TextInput keyboardType to Text to prevent autofills from popping up
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 5aaac03 commit 54f049b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/flipcash/features/withdrawal/src/main/kotlin/com/flipcash/app/withdrawal/internal/destination/WithdrawalDestinationScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private fun WithdrawalDestinationScreenContent(
109109
maxLines = 1,
110110
contentPadding = PaddingValues(CodeTheme.dimens.grid.x2),
111111
colors = inputColors(placeholderColor = CodeTheme.colors.textSecondary,),
112-
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Password),
112+
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text),
113113
)
114114

115115
AnimatedContent(

0 commit comments

Comments
 (0)