Updated on 2026-08-14

This commit is contained in:
Tangem 2024-06-17 13:40:04 +04:00
parent 888d26029b
commit e1ef1c4b8a
10 changed files with 352 additions and 8 deletions

View file

@ -200,4 +200,9 @@ sealed class AppRoute(val path: String) : Route {
@Serializable
data object PushNotification : AppRoute(path = "/push_notification")
@Serializable
data class WalletSettings(
val userWalletId: UserWalletId,
) : AppRoute(path = "/wallet_settings/${userWalletId.stringValue}")
}