commit babbe38f3e425b9a0008c18fa8e38ccc7f4afc67
parent 31ade9a9a63b582ca71d12dcd78b0b6af22afc3c
Author: Marc Stibane <marc@taler.net>
Date: Mon, 3 Aug 2026 19:15:28 +0200
cleanup
Diffstat:
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/TalerWallet1/Views/Transactions/ManualDetailsV.swift b/TalerWallet1/Views/Transactions/ManualDetailsV.swift
@@ -41,10 +41,7 @@ struct ManualDetailsV: View {
amountStr: String,
messageStr: String?) -> some View {
let qrCodesForPayto = QRcodesForPayto(stack: stack.push(),
- transferOptions: transferOptions,
- receiverStr: receiverStr,
- amountStr: amountStr,
- messageStr: messageStr)
+ transferOptions: transferOptions)
NavigationLink(destination: qrCodesForPayto) {
Text(minimalistic ? "QR"
: "Wire transfer QR codes")
diff --git a/TalerWallet1/Views/Transactions/QRcodesForPayto.swift b/TalerWallet1/Views/Transactions/QRcodesForPayto.swift
@@ -56,9 +56,6 @@ struct QRcodeCopyShare: View {
struct QRcodesForPayto: View {
let stack: CallStack
var transferOptions: [TransferOption]
- let receiverStr: String
- let amountStr: String
- let messageStr: String?
let navTitle = String(localized: "Wire transfer", comment: "ViewTitle of wire-transfer QR codes")