From 0ceef14fed3e7e368bf1c03f79d5c718e0af0b2e Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 21 Sep 2023 09:51:20 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../presentation/tokendetails/ui/TokenDetailsScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt index 3cd4caf903..9ab8a4487f 100644 --- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt +++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/ui/TokenDetailsScreen.kt @@ -79,7 +79,7 @@ internal fun TokenDetailsScreen(state: TokenDetailsState) { item { TokenDetailsBalanceBlock(modifier = itemModifier, state = state.tokenBalanceBlockState) } items( items = state.notifications, - key = { it.config.title.hashCode() }, + key = { it.config::class.java }, contentType = { it.config::class.java }, itemContent = { Notification(config = it.config, modifier = itemModifier.animateItemPlacement()) }, )