Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-21 13:02:50 +05:00
parent be5786260a
commit ce878fdbe2
20 changed files with 240 additions and 1 deletions

View file

@ -353,4 +353,7 @@ sealed class AppRoute(val path: String) : Route {
data class ArchivedAccountList(
val userWalletId: UserWalletId,
) : AppRoute(path = "/archived_account/${userWalletId.stringValue}")
@Serializable
data object TangemPayDetails : AppRoute(path = "/tangem_pay_details")
}