Updated on 2026-08-14
This commit is contained in:
parent
082492ee26
commit
ef36fbf13e
1 changed files with 9 additions and 3 deletions
|
|
@ -130,14 +130,20 @@ internal class CardSettingsViewModel @Inject constructor(
|
|||
}
|
||||
is CardInfo.ResetToFactorySettings -> {
|
||||
Analytics.send(Settings.CardSettings.ButtonFactoryReset())
|
||||
store.dispatchNavigationAction { AppRoute.ResetToFactory(userWalletId) }
|
||||
store.dispatchNavigationAction {
|
||||
push(route = AppRoute.ResetToFactory(userWalletId))
|
||||
}
|
||||
}
|
||||
is CardInfo.SecurityMode -> {
|
||||
Analytics.send(Settings.CardSettings.ButtonChangeSecurityMode())
|
||||
store.dispatchNavigationAction { AppRoute.DetailsSecurity(userWalletId) }
|
||||
store.dispatchNavigationAction {
|
||||
push(route = AppRoute.DetailsSecurity(userWalletId))
|
||||
}
|
||||
}
|
||||
is CardInfo.AccessCodeRecovery -> {
|
||||
store.dispatchNavigationAction { AppRoute.AccessCodeRecovery(userWalletId) }
|
||||
store.dispatchNavigationAction {
|
||||
push(route = AppRoute.AccessCodeRecovery(userWalletId))
|
||||
}
|
||||
}
|
||||
else -> {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue