From 7ce0d44c0aaec3f63d63b98ee37e8ff741d76c93 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 9 Oct 2023 17:59:06 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../tangem/core/ui/components/buttons/HorizontalActionChips.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ui/src/main/java/com/tangem/core/ui/components/buttons/HorizontalActionChips.kt b/core/ui/src/main/java/com/tangem/core/ui/components/buttons/HorizontalActionChips.kt index b34aa9c970..3a5bbafce5 100644 --- a/core/ui/src/main/java/com/tangem/core/ui/components/buttons/HorizontalActionChips.kt +++ b/core/ui/src/main/java/com/tangem/core/ui/components/buttons/HorizontalActionChips.kt @@ -31,9 +31,9 @@ fun HorizontalActionChips( verticalAlignment = Alignment.CenterVertically, contentPadding = contentPadding, ) { + // do not use key cause when change items order, list is scrolled items( items = buttons, - key = { config -> config.text.hashCode() }, itemContent = { ActionButton(config = it) }, ) }