Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-25 16:03:41 +04:00
parent 60ba581540
commit 88f7205293
15 changed files with 1 additions and 361 deletions

View file

@ -10,6 +10,4 @@ interface ReduxStateHolder {
suspend fun dispatchWithMain(action: Action)
suspend fun onUserWalletSelected(userWallet: UserWallet)
fun dispatchDialogShow(dialog: StateDialog)
}

View file

@ -1,10 +0,0 @@
package com.tangem.domain.redux
interface StateDialog {
data class ScanFailsDialog(val source: ScanFailsSource, val onTryAgain: (() -> Unit)? = null) : StateDialog
enum class ScanFailsSource {
MAIN, SIGN_IN, SETTINGS, INTRO
}
}