commit 275d69ea0c88c52ea3f8e55b78c7a466ae84be88 parent 43d27dc731ee77f277eb6bf9f98e8c9c2f9ddadb Author: Marc Stibane <marc@taler.net> Date: Sun, 10 Sep 2023 13:29:31 +0200 Comment Diffstat:
| M | TalerWallet1/Views/Transactions/TransactionDetailView.swift | | | 2 | +- |
| M | TalerWallet1/Views/WithdrawBankIntegrated/WithdrawTOSView.swift | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/TalerWallet1/Views/Transactions/TransactionDetailView.swift b/TalerWallet1/Views/Transactions/TransactionDetailView.swift @@ -232,7 +232,7 @@ struct TransactionDetailView: View { .accessibilityFont(.title2) .lineLimit(4) .padding(.bottom) - // TODO: isSendCoins should show QR only while not expired + // TODO: isSendCoins should show QR only while not yet expired - either set timer or wallet-core should do so and send a state-changed notification if pending { QRCodeDetails(transaction: transaction) if hasDone { diff --git a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawTOSView.swift b/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawTOSView.swift @@ -11,7 +11,7 @@ struct WithdrawTOSView: View { let navTitle = String(localized: "Terms of Service") - var exchangeBaseUrl: String? + let exchangeBaseUrl: String? @EnvironmentObject private var model: WalletModel @@ -103,7 +103,7 @@ extension WithdrawTOSView { .accessibilityFont(.footnote) .foregroundColor(Color(UIColor.label)) } - } else { + } else { // MarkDown Section { Text(term0) .accessibilityFont(.body)