Updated on 2026-08-14

This commit is contained in:
Tangem 2026-01-14 19:25:38 +01:00
parent 8fe9bb6d1c
commit 3c6699674b
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ internal class DefaultFeedEntryComponent @AssistedInject constructor(
override fun Content(modifier: Modifier) {
val background = TangemTheme.colors.background.tertiary
CompositionLocalProvider(
LocalMainBottomSheetColor provides remember { mutableStateOf(background) },
LocalMainBottomSheetColor provides remember(background) { mutableStateOf(background) },
) {
val bottomSheetState = remember {
derivedStateOf { BottomSheetState.EXPANDED }