From 54b9c7f213b4a540bf82de3b9c8b648f853e38c8 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 4 May 2026 17:08:11 +0100 Subject: [PATCH] Updated on 2026-08-14 --- .../component/DefaultWalletBackupComponent.kt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/walletbackup/component/DefaultWalletBackupComponent.kt b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/walletbackup/component/DefaultWalletBackupComponent.kt index c86ca0daee..5c9921bdf6 100644 --- a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/walletbackup/component/DefaultWalletBackupComponent.kt +++ b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/walletbackup/component/DefaultWalletBackupComponent.kt @@ -7,7 +7,6 @@ import androidx.lifecycle.compose.collectAsStateWithLifecycle import com.tangem.core.decompose.context.AppComponentContext import com.tangem.core.decompose.model.getOrCreateModel import com.tangem.features.hotwallet.WalletBackupComponent -import com.tangem.features.hotwallet.walletbackup.entity.Action import com.tangem.features.hotwallet.walletbackup.model.WalletBackupModel import com.tangem.features.hotwallet.walletbackup.ui.WalletBackupContent import dagger.assisted.Assisted @@ -27,21 +26,6 @@ internal class DefaultWalletBackupComponent @AssistedInject constructor( WalletBackupContent( state = state, modifier = modifier, - onBackClick = { - model.onAction(Action.OnBack) - }, - onHardwareWalletClick = { - model.onAction(Action.HardwareWallet) - }, - onRecoveryPhraseClick = { - model.onAction(Action.RecoveryPhrase) - }, - onGoogleDriveClick = { - model.onAction(Action.GoogleDriveBackup(isDialogShown = true)) - }, - onGoogleDriveFakeDoorDialogDismiss = { - model.onAction(Action.GoogleDriveBackup(isDialogShown = false)) - }, ) }