Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-30 17:51:22 +03:00
parent b904eecf7a
commit be56fd039a
5 changed files with 21 additions and 3 deletions

View file

@ -294,6 +294,12 @@ private fun SwapWarnings(warnings: List<SwapWarning>) {
config = warning.notificationConfig,
)
}
is SwapWarning.GeneralWarning -> {
Notification(
config = warning.notificationConfig,
iconTint = TangemTheme.colors.icon.warning,
)
}
else -> {}
}
SpacerH8()