Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-04 14:47:39 +03:00
parent 34609aeb8c
commit e2721b21e1
13 changed files with 53 additions and 9 deletions

View file

@ -167,11 +167,14 @@ sealed class AppRoute(val path: String) : Route {
get() = when (this) {
is Send -> "/$networkName"
WalletConnect -> ""
MainScreen -> ""
}
data class Send(val networkName: String) : Source()
data object WalletConnect : Source()
data object MainScreen : Source()
}
}