Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-08 17:04:07 +01:00
parent eef969ae57
commit b6dcdc4d87

View file

@ -1,6 +1,5 @@
package com.tangem.features.addressbook.component
import androidx.activity.compose.BackHandler
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Modifier
@ -41,7 +40,6 @@ internal class DefaultAddressBookComponent @AssistedInject constructor(
override fun Content(modifier: Modifier) {
val childStack by contentStack.subscribeAsState()
BackHandler(onBack = router::pop)
Children(stack = childStack, animation = stackAnimation()) { child ->
child.instance.Content(modifier = modifier)
}