Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-02 15:22:05 +04:00
commit e96c236de5
32 changed files with 433 additions and 82 deletions

View file

@ -405,6 +405,7 @@ sealed class AppRoute(val path: String) : Route {
val analyticsAction: String,
val isUpgradeFlow: Boolean = false,
val nextScreen: AppRoute? = null,
val shouldShowBackButton: Boolean = true,
) : AppRoute(path = "/create_wallet_backup/${userWalletId.stringValue}")
@Serializable
@ -412,6 +413,7 @@ sealed class AppRoute(val path: String) : Route {
val userWalletId: UserWalletId,
val source: String,
val nextScreen: AppRoute? = null,
val shouldShowBackButton: Boolean = true,
) : AppRoute(path = "/update_access_code/${userWalletId.stringValue}")
@Serializable