commit 5c2ccc51e5f812384215331f87c7cf31ef4776ed
parent dc54b91267417073d15c6e79645c2237d1762987
Author: Marc Stibane <marc@taler.net>
Date: Thu, 27 Aug 2026 15:19:32 +0200
remove old Copy payto
Diffstat:
1 file changed, 0 insertions(+), 15 deletions(-)
diff --git a/TalerWallet1/Views/Transactions/TransactionTypeDetail.swift b/TalerWallet1/Views/Transactions/TransactionTypeDetail.swift
@@ -112,21 +112,6 @@ struct TransactionTypeDetail: View {
feeIsNegative: true,
large: false,
summary: nil)
- if developerMode {
- let withdrawalDetails = details.withdrawalDetails
- if let validDetails = withdrawalDetails.exchangeCreditAccountDetails?.validDetails {
- let validCount = validDetails.count
- if validCount > 0 {
- ForEach(validDetails, id: \.self) { detail in
- let label = detail.bankLabel ?? EMPTYSTRING
- if let options = detail.transferOptions, !options.isEmpty {
- ForEach(options, id: \.self) { option in
- if let uri = option.uri {
- CopyButton(uri, title: "Copy \(label) uri")
- } else if let payto = option.paytoUri {
- CopyButton(payto, title: "Copy \(label) payto")
- }
- } } } } } }
}
case .deposit(let depositTransaction): Group {
if transaction.common.isPendingKYCauth {