From c5f7baa0ffd92b2e1c45a2f7b6e3f2d5600bf9b2 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 17 Nov 2025 10:42:23 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../hotwallet/viewphrase/DefaultViewPhraseComponent.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/viewphrase/DefaultViewPhraseComponent.kt b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/viewphrase/DefaultViewPhraseComponent.kt index d82fbd968e..db4d664089 100644 --- a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/viewphrase/DefaultViewPhraseComponent.kt +++ b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/viewphrase/DefaultViewPhraseComponent.kt @@ -6,6 +6,7 @@ import androidx.compose.ui.Modifier import androidx.lifecycle.compose.collectAsStateWithLifecycle import com.tangem.core.decompose.context.AppComponentContext import com.tangem.core.decompose.model.getOrCreateModel +import com.tangem.core.ui.security.DisableScreenshotsDisposableEffect import com.tangem.features.hotwallet.ViewPhraseComponent import com.tangem.features.hotwallet.viewphrase.model.ViewPhraseModel import com.tangem.features.hotwallet.viewphrase.ui.ViewPhraseContent @@ -22,6 +23,9 @@ internal class DefaultViewPhraseComponent @AssistedInject constructor( @Composable override fun Content(modifier: Modifier) { val state by model.uiState.collectAsStateWithLifecycle() + + DisableScreenshotsDisposableEffect() + ViewPhraseContent( state = state, modifier = modifier,