diff --git a/Library/Generated/strings.swift b/Library/Generated/strings.swift index 7ac04ec42..dcfb7b503 100644 --- a/Library/Generated/strings.swift +++ b/Library/Generated/strings.swift @@ -535,8 +535,6 @@ internal enum L10n { internal static let sendButton = L10n.tr("Localizable", "scene.send.send_button") /// Send amount too small internal static let sendAmountTooSmall = L10n.tr("Localizable", "scene.send.send_amount_too_small") - /// Send amount too small for estimate - internal static let sendAmountTooSmallForEstimate = L10n.tr("Localizable", "scene.send.send_amount_too_small_for_estimate") /// Sending... internal static let sending = L10n.tr("Localizable", "scene.send.sending") /// Payment Successful diff --git a/Library/Scenes/ModalDetail/Send/LoadingAmountView.swift b/Library/Scenes/ModalDetail/Send/LoadingAmountView.swift index 0e0d548a9..7b3410bd7 100644 --- a/Library/Scenes/ModalDetail/Send/LoadingAmountView.swift +++ b/Library/Scenes/ModalDetail/Send/LoadingAmountView.swift @@ -82,16 +82,11 @@ final class LoadingAmountView: UIView { } else { amountLabel.text = "-" } - case .error(let lndApiError): + case .error: activityIndicator.isHidden = true amountLabel.isHidden = false - switch lndApiError { - case .transactionDust: - amountLabel.text = L10n.Scene.Send.sendAmountTooSmallForEstimate - default: - amountLabel.text = "-" - } + amountLabel.text = "-" } } } diff --git a/Library/en.lproj/Localizable.strings b/Library/en.lproj/Localizable.strings index a5dff3948..95bbf107f 100644 --- a/Library/en.lproj/Localizable.strings +++ b/Library/en.lproj/Localizable.strings @@ -146,7 +146,6 @@ "scene.send.memo_headline" = "Memo:"; "scene.send.sending" = "Sending..."; "scene.send.send_amount_too_small" = "Send amount too small"; -"scene.send.send_amount_too_small_for_estimate" = "Send amount too small for fee estimation"; "scene.send.lightning.title" = "Send Lightning Payment"; "scene.send.on_chain.title" = "Send On-Chain"; "scene.send.on_chain.fee" = "Fee:";