Updated on 2026-08-14

This commit is contained in:
Tangem 2026-01-28 16:03:32 +03:00
commit 1d25d23664

View file

@ -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