taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit eb5a6291b13067be286d40529f3b1bd840b24545
parent 914e94b1044cc5aee21574666241a22940ef47d6
Author: Marc Stibane <marc@taler.net>
Date:   Sun, 20 Jul 2025 19:07:14 +0200

cleanup

Diffstat:
MTalerWallet1/Views/Transactions/ManualDetailsV.swift | 1-
MTalerWallet1/Views/Transactions/ManualDetailsWireV.swift | 13-------------
MTalerWallet1/Views/Transactions/QRcodesForPayto.swift | 2+-
MTalerWallet1/Views/Transactions/TransactionSummaryV.swift | 1-
4 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/TalerWallet1/Views/Transactions/ManualDetailsV.swift b/TalerWallet1/Views/Transactions/ManualDetailsV.swift @@ -198,7 +198,6 @@ struct ManualDetailsV: View { let wireDetails = ManualDetailsWireV(stack: stack.push(), reservePub: details.reservePub, receiverStr: receiverStr, -// receiverAux: payto.receiverAux, receiverZip: payto.postalCode, receiverTown: payto.town, iban: payto.iban, diff --git a/TalerWallet1/Views/Transactions/ManualDetailsWireV.swift b/TalerWallet1/Views/Transactions/ManualDetailsWireV.swift @@ -79,7 +79,6 @@ struct ManualDetailsWireV: View { let stack: CallStack let reservePub: String let receiverStr: String -// let receiverAux: String? let receiverZip: String? let receiverTown: String? let iban: String? @@ -104,13 +103,6 @@ struct ManualDetailsWireV: View { : String(localized: "Finish the wire transfer of \(amountNBS) in your banking app or website, then this withdrawal will proceed automatically.") + "\n" + bePatient } -// func buildReceiver() -> String { -// if let receiverAux { -// return receiverStr + ", " + receiverAux -// } -// return receiverStr -// } - @ViewBuilder func payeeZip() -> some View { HStack { VStack(alignment: .leading) { @@ -163,11 +155,6 @@ struct ManualDetailsWireV: View { Text(receiverStr) .monospacedDigit() .padding(.leading) -// if let receiverAux { -// Text(receiverAux) -// .monospacedDigit() -// .padding(.leading) -// } } .frame(maxWidth: .infinity, alignment: .leading) .accessibilityElement(children: .combine) .accessibilityLabel(Text("Recipient", comment: "a11y")) diff --git a/TalerWallet1/Views/Transactions/QRcodesForPayto.swift b/TalerWallet1/Views/Transactions/QRcodesForPayto.swift @@ -33,7 +33,7 @@ struct QRcodesForPayto: View { Text(verbatim: "|") // only reason for this leading-aligned text is to get a nice full length listRowSeparator .accessibilityHidden(true) .foregroundColor(Color.clear) - // Spacer() +// Spacer() CopyShare(textToCopy: spec.qrContent) .disabled(false) }.listRowSeparator(.automatic) diff --git a/TalerWallet1/Views/Transactions/TransactionSummaryV.swift b/TalerWallet1/Views/Transactions/TransactionSummaryV.swift @@ -375,7 +375,6 @@ struct TransactionSummaryV: View { let wireDetails = ManualDetailsWireV(stack: stack.push(), reservePub: info.accountPub, receiverStr: receiverStr, -// receiverAux: payto.receiverAux, receiverZip: payto.postalCode, receiverTown: payto.town, iban: payto.iban,