From e7c625ef5bf837cb0e4ca2537541b595bd024b6a Mon Sep 17 00:00:00 2001 From: Tangem Date: Wed, 22 Feb 2023 22:00:47 +0800 Subject: [PATCH] Updated on 2026-08-14 --- .../java/com/tangem/feature/swap/ui/SwapScreenContent.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreenContent.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreenContent.kt index d48b0d3e5a..1b52c30bb6 100644 --- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreenContent.kt +++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/SwapScreenContent.kt @@ -38,6 +38,7 @@ import com.tangem.core.ui.components.PrimaryButton import com.tangem.core.ui.components.PrimaryButtonIconRight import com.tangem.core.ui.components.RefreshableWaringCard import com.tangem.core.ui.components.SimpleOkDialog +import com.tangem.core.ui.components.SmallInfoCard import com.tangem.core.ui.components.SmallInfoCardWithDisclaimer import com.tangem.core.ui.components.SmallInfoCardWithWarning import com.tangem.core.ui.components.WarningCard @@ -280,7 +281,9 @@ private fun FeeItem(feeState: FeeState, currency: String) { ), ) } - is FeeState.Empty -> {} + is FeeState.Empty -> { + SmallInfoCard(startText = titleString, endText = "") + } } }