Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-21 11:50:28 +01:00
parent d30f231520
commit 333640b3a7
22 changed files with 393 additions and 103 deletions

View file

@ -330,6 +330,7 @@ sealed class AppRoute(val path: String) : Route {
data object RecreateWalletTwin : Mode() // reset twins
data object ContinueFinalize : Mode() // continue finalize process (unfinished backup dialog)
data class UpgradeHotWallet(val userWalletId: UserWalletId) : Mode() // upgrade hot wallet
data object AddressSync : Mode()
}
}
@ -484,7 +485,4 @@ sealed class AppRoute(val path: String) : Route {
@Serializable
data class NewsDetails(val newsId: Int) : AppRoute(path = "/news_details/$newsId")
@Serializable
data object AddressSync : AppRoute(path = "/address_sync")
}