From f60072441d2ad2c26a69b75986fd144cc14ed393 Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 10 Jan 2025 15:00:50 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../tangem/features/managetokens/ui/CustomTokenFormContent.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/manage-tokens/impl/src/main/kotlin/com/tangem/features/managetokens/ui/CustomTokenFormContent.kt b/features/manage-tokens/impl/src/main/kotlin/com/tangem/features/managetokens/ui/CustomTokenFormContent.kt index fd105e3e8c..93e9697e4b 100644 --- a/features/manage-tokens/impl/src/main/kotlin/com/tangem/features/managetokens/ui/CustomTokenFormContent.kt +++ b/features/manage-tokens/impl/src/main/kotlin/com/tangem/features/managetokens/ui/CustomTokenFormContent.kt @@ -162,7 +162,7 @@ private fun TextField(model: TextInputFieldUM, modifier: Modifier = Modifier) { model.error != null -> { TangemTheme.colors.text.warning } - model.value.isNotBlank() || model.isFocused -> { + model.isEnabled || model.value.isNotBlank() || model.isFocused -> { TangemTheme.colors.text.tertiary } else -> {