feat(join by alias) : add TextFieldValidity.None instead of nullable

This commit is contained in:
ganfra 2025-02-25 20:27:54 +01:00
parent 6f8ca62261
commit 25d39c285b
5 changed files with 6 additions and 5 deletions

View file

@ -100,7 +100,7 @@ private fun Content(text: String, onTextChange: (String) -> Unit, hasError: Bool
Icon(imageVector = image, description)
}
},
validity = if (hasError) TextFieldValidity.Invalid else null,
validity = if (hasError) TextFieldValidity.Invalid else TextFieldValidity.None,
supportingText = if (hasError) {
stringResource(R.string.screen_reset_encryption_password_error)
} else {