diff --git a/app/src/main/java/com/tangem/tap/features/tokens/ui/compose/CurrenciesWarning.kt b/app/src/main/java/com/tangem/tap/features/tokens/ui/compose/CurrenciesWarning.kt index 0e7a4341df..b5c11c60b8 100644 --- a/app/src/main/java/com/tangem/tap/features/tokens/ui/compose/CurrenciesWarning.kt +++ b/app/src/main/java/com/tangem/tap/features/tokens/ui/compose/CurrenciesWarning.kt @@ -24,7 +24,10 @@ fun CurrenciesWarning() { contentAlignment = Alignment.Center, modifier = Modifier .padding(16.dp) - .background(Color(0xFFF2F2F2), shape = RoundedCornerShape(10.dp)) + .background( + color = Color(0xFFF2F2F2), + shape = RoundedCornerShape(10.dp), + ), ) { val warning = stringResource(id = R.string.alert_manage_tokens_addresses_message) @@ -33,18 +36,18 @@ fun CurrenciesWarning() { AnnotatedString.Range( SpanStyle(fontWeight = FontWeight.Bold), start = 0, - end = end - ) + end = end, + ), ) Text( text = AnnotatedString(text = warning, spanStyles = spanStyles), - textAlign = TextAlign.Center, + textAlign = TextAlign.Start, color = Color(0xFF848488), modifier = Modifier.padding( top = 8.dp, bottom = 8.dp, start = 16.dp, - end = 16.dp + end = 16.dp, ), fontSize = 13.sp, fontWeight = FontWeight.Normal,