commit fd4257854df4ddd23c75eb059a3ab155cfb7b8ae parent e0e8e6dd273fc4f88103c250818d49462c6a2003 Author: Marc Stibane <marc@taler.net> Date: Tue, 18 Mar 2025 14:31:05 +0100 Fix: hint only with currency name Diffstat:
| M | TalerWallet1/Views/Transactions/ManualDetailsV.swift | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Transactions/ManualDetailsV.swift b/TalerWallet1/Views/Transactions/ManualDetailsV.swift @@ -232,7 +232,7 @@ struct ManualDetailsV: View { .listRowSeparator(.hidden) let title = String(localized: "Share the PayTo URL", comment: "VoiceOver") let minTitle = String(localized: "Share PayTo", comment: "mini") - let textToShare = String("\(payto)\n\nIBAN: \(iban)\nReceiver: \(receiverStr)\nAmount: \(amountStr)\nSubject: \(details.reservePub)") + let textToShare = String("\(payto)\n\nIBAN: \(iban)\nReceiver: \(receiverStr)\nAmount: \(amountStr.1)\nSubject: \(details.reservePub)") let _ = print(textToShare) ShareButton(textToShare: textToShare, title: minimalistic ? minTitle : title) .frame(maxWidth: .infinity, alignment: .center)