taler-ios

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

commit 158acf524fff120cb60e10a92633063733c42a64
parent 931076b600d7b9fa30ab24c3fa2e55011760912e
Author: Marc Stibane <marc@taler.net>
Date:   Thu, 16 Jul 2026 09:24:16 +0200

cleanup

Diffstat:
MTalerWallet1/Views/HelperViews/LoadingView.swift | 2+-
MTalerWallet1/Views/Main/WalletMain.swift | 2+-
MTalerWallet1/Views/Transactions/TransactionsListView.swift | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/TalerWallet1/Views/HelperViews/LoadingView.swift b/TalerWallet1/Views/HelperViews/LoadingView.swift @@ -48,7 +48,7 @@ struct LoadingView: View { } .frame(maxWidth: .infinity) .talerFont(.title) - .navigationTitle("Loading…") + .navigationTitle(navTitle) .background(FullBackground()) if #available(iOS 17.0, *) { view.toolbarTitleDisplayMode(.inlineLarge) diff --git a/TalerWallet1/Views/Main/WalletMain.swift b/TalerWallet1/Views/Main/WalletMain.swift @@ -330,7 +330,7 @@ struct WalletMain: View { .alert("You need to pass a legitimization procedure.", isPresented: $showKycAlert, actions: { openKycButton - dismissAlertButton }, + dismissAlertButton }, message: { Text("Tap the button to go to the legitimization website.") }) .onNotification(.BalanceChange) { notification in logger.info(".onNotification(.BalanceChange) ==> reload balances") diff --git a/TalerWallet1/Views/Transactions/TransactionsListView.swift b/TalerWallet1/Views/Transactions/TransactionsListView.swift @@ -142,7 +142,7 @@ struct TransactionsListView: View { } // body } // MARK: - -// used by TransactionsListView, and by BalancesSectionView to show the last 3 transactions +// used by TransactionsListView, and by BalancesSectionView to show the last 4 transactions struct TransactionsArraySection: View { let symLog: SymLogV? let logger: Logger?