mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 08:55:48 +03:00
Fix incorrect label & initial value for email input label (#21)
This commit is contained in:
parent
880d7ae786
commit
ef43c93d85
1 changed files with 4 additions and 1 deletions
|
@ -67,7 +67,10 @@ fun LandingScreen(
|
|||
.padding(horizontal = 24.dp),
|
||||
)
|
||||
|
||||
BitwardenTextField(label = state.initialEmailAddress)
|
||||
BitwardenTextField(
|
||||
label = stringResource(id = R.string.email_address),
|
||||
initialValue = state.initialEmailAddress,
|
||||
)
|
||||
|
||||
Row(
|
||||
horizontalArrangement = Arrangement.SpaceBetween,
|
||||
|
|
Loading…
Reference in a new issue