Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-29 18:51:20 +04:00
parent 2d71151e72
commit 3ec1b5c88e
9 changed files with 11 additions and 20 deletions

View file

@ -1,6 +1,5 @@
package com.tangem.tap.proxy.redux
import com.tangem.core.decompose.context.AppComponentContext
import com.tangem.core.navigation.email.EmailSender
import com.tangem.domain.card.ScanCardUseCase
import com.tangem.domain.card.repository.CardSdkConfigRepository
@ -26,6 +25,5 @@ sealed interface DaggerGraphAction : Action {
val sendRouter: SendRouter,
val qrScanningRouter: QrScanningRouter,
val emailSender: EmailSender,
val rootComponentContext: AppComponentContext,
) : DaggerGraphAction
}

View file

@ -23,7 +23,6 @@ object DaggerGraphReducer {
sendRouter = action.sendRouter,
qrScanningRouter = action.qrScanningRouter,
emailSender = action.emailSender,
rootComponentContext = action.rootComponentContext,
)
}
}

View file

@ -2,7 +2,6 @@ package com.tangem.tap.proxy.redux
import com.tangem.TangemSdkLogger
import com.tangem.blockchainsdk.BlockchainSDKFactory
import com.tangem.core.decompose.context.AppComponentContext
import com.tangem.core.navigation.email.EmailSender
import com.tangem.datasource.asset.loader.AssetLoader
import com.tangem.datasource.connection.NetworkConnectionManager
@ -42,7 +41,6 @@ import com.tangem.tap.proxy.AppStateHolder
import org.rekotlin.StateType
data class DaggerGraphState(
val rootComponentContext: AppComponentContext? = null,
val testerRouter: TesterRouter? = null,
val networkConnectionManager: NetworkConnectionManager? = null,
val customTokenFeatureToggles: CustomTokenFeatureToggles? = null,