Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-03 12:59:53 +03:00
parent 2cf2c9ed1d
commit f54d7eaa57
7 changed files with 1 additions and 24 deletions

View file

@ -53,7 +53,6 @@ internal class TokenDetailsNotificationsAnalyticsSender(
is TokenDetailsNotification.HederaAssociateWarning,
is TokenDetailsNotification.KoinosMana,
is TokenDetailsNotification.MigrationMaticToPol,
is TokenDetailsNotification.TokensInBeta,
is TokenDetailsNotification.UsedOutdatedData,
-> null
}

View file

@ -230,11 +230,6 @@ internal sealed class TokenDetailsNotification(val config: NotificationConfig) {
subtitle = resourceReference(id = R.string.warning_matic_migration_message),
)
data object TokensInBeta : Warning(
title = resourceReference(id = R.string.beta_mode_warning_title),
subtitle = resourceReference(id = R.string.beta_mode_warning_message),
)
data object UsedOutdatedData : TokenDetailsNotification(
config = NotificationConfig(
subtitle = resourceReference(R.string.warning_some_token_balances_not_updated),

View file

@ -135,7 +135,6 @@ internal class TokenDetailsNotificationConverter(
},
)
is CryptoCurrencyWarning.MigrationMaticToPol -> MigrationMaticToPol
is CryptoCurrencyWarning.TokensInBetaWarning -> TokensInBeta
is CryptoCurrencyWarning.UsedOutdatedDataWarning -> UsedOutdatedData
}
}