Fix initial value for password

This commit is contained in:
sim 2024-11-28 16:25:46 +00:00
parent 423a733e56
commit aeb5a776ce
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ fun StartUi(viewModel: StartViewModel, showManualLogin: Boolean = false) {
var showManualLogin by remember { mutableStateOf(showManualLogin) }
var showPassword by remember { mutableStateOf(false) }
var usernameValue by remember { mutableStateOf("") }
var passwordValue by remember { mutableStateOf("www") }
var passwordValue by remember { mutableStateOf("") }
var urlValue by remember { mutableStateOf("https://") }
var showPermissionDialog by remember { mutableStateOf(true) }