diff --git a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/analytics/utils/WalletWarningsSingleEventSender.kt b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/analytics/utils/WalletWarningsSingleEventSender.kt index 4b4227a657..f52290e6d2 100644 --- a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/analytics/utils/WalletWarningsSingleEventSender.kt +++ b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/analytics/utils/WalletWarningsSingleEventSender.kt @@ -60,7 +60,7 @@ internal class WalletWarningsSingleEventSender @Inject constructor( // We check that map contains the first seen wallet (will return null instead false/true otherwise) // and for this wallet we haven't shown the activation bs yet (check that returns false, not true) if (isActivationBottomSheetShown[userWalletId] == false) { - if (event.type == WalletActivationBannerType.Warning) { + if (event.type == WalletActivationBannerType.Warning && event.isBackupExists.not()) { showFinishActivationBottomSheet(userWalletId) } isActivationBottomSheetShown[userWalletId] = true