Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-02 00:50:30 -07:00
parent ec818bfd0a
commit adb7549046
12 changed files with 49 additions and 14 deletions

View file

@ -409,6 +409,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
@ -416,6 +417,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