Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-13 12:29:40 +03:00
parent a34cb0687c
commit e65d8a0581
10 changed files with 62 additions and 47 deletions

View file

@ -63,6 +63,4 @@ sealed class WalletScreenAnalyticsEvent {
object NoticeWalletLocked : MainScreen(event = "Notice - Wallet Locked")
object WalletUnlockTapped : MainScreen(event = "Button - Wallet Unlock Tapped")
}
object SwapPromo : AnalyticsEvent(category = "Swap Promo", event = "Button - Close")
}

View file

@ -779,7 +779,6 @@ internal class WalletViewModel @Inject constructor(
override fun onCloseSwapPromoNotificationClick() {
viewModelScope.launch(dispatchers.main) {
shouldShowSwapPromoWalletUseCase.neverToShow()
analyticsEventsHandler.send(WalletScreenAnalyticsEvent.SwapPromo)
}
}