feat(join by alias) : small clean up

This commit is contained in:
ganfra 2025-02-25 20:28:05 +01:00
parent 30fbb124a5
commit 715a44681a
2 changed files with 2 additions and 3 deletions

View file

@ -83,8 +83,8 @@ private fun Content(text: String, onTextChange: (String) -> Unit, hasError: Bool
var showPassword by remember { mutableStateOf(false) }
TextField(
modifier = Modifier
.fillMaxWidth()
.onTabOrEnterKeyFocusNext(LocalFocusManager.current),
.fillMaxWidth()
.onTabOrEnterKeyFocusNext(LocalFocusManager.current),
value = text,
onValueChange = onTextChange,
placeholder = stringResource(CommonStrings.common_password),