commit 9e471610debbf055dc0462c7134aa5218266cca7 parent 77b1225fa166237fc6abeb262d726c7f85b5cb88 Author: Marc Stibane <marc@taler.net> Date: Thu, 3 Sep 2026 23:26:42 +0200 show UnconfirmedKeyChangeView Diffstat:
| M | TalerWallet1/Views/Transactions/TransactionsListView.swift | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Transactions/TransactionsListView.swift b/TalerWallet1/Views/Transactions/TransactionsListView.swift @@ -64,7 +64,11 @@ struct TransactionsListView: View { let _ = Self._printChanges() let _ = symLog.vlog() // just to get the # to compare it with .onAppear & onDisappear #endif - if transactions.isEmpty { + let isLegacy = scope.type == .exchangeLegacyKeys + if isLegacy { + UnconfirmedKeyChangeView(baseURL: scope.url ?? "unknown", balance: balance) + + } else if transactions.isEmpty { TransactionsEmptyView(stack: stack.push(), currency: scope.currency) .refreshable { controller.hapticNotification(.success)