commit bd0364e80bc522f33550ab2c3c84b4edff994ad1 parent fd4257854df4ddd23c75eb059a3ab155cfb7b8ae Author: Marc Stibane <marc@taler.net> Date: Thu, 20 Mar 2025 11:53:11 +0100 VIEW_PAYMENT_SERVICES Diffstat:
| M | TalerWallet1/Controllers/DebugViewC.swift | | | 1 | + |
| M | TalerWallet1/Views/Settings/Bank/BankListView.swift | | | 2 | +- |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Controllers/DebugViewC.swift b/TalerWallet1/Controllers/DebugViewC.swift @@ -30,6 +30,7 @@ public let VIEW_BALANCES = VIEW_EMPTY_WALLET + 1 // 11 Balanc public let VIEW_SETTINGS = VIEW_BALANCES + 1 // 12 SettingsView public let VIEW_ABOUT = VIEW_SETTINGS + 1 // 13 AboutView public let VIEW_PAYMENT_SERVICES = VIEW_ABOUT + 1 // 14 ExchangeListView +public let VIEW_BANK_ACCOUNTS = VIEW_PAYMENT_SERVICES + 1 // 15 BankListView // MARK: Transactions public let VIEW_EMPTY_HISTORY = VIEW_EMPTY_WALLET + 10 // 20 TransactionsEmptyView diff --git a/TalerWallet1/Views/Settings/Bank/BankListView.swift b/TalerWallet1/Views/Settings/Bank/BankListView.swift @@ -112,7 +112,7 @@ struct BankListView: View { .navigationTitle(navTitle) .navigationBarItems(trailing: plusButton) .onAppear() { - DebugViewC.shared.setViewID(VIEW_PAYMENT_SERVICES, stack: stack.push()) + DebugViewC.shared.setViewID(VIEW_BANK_ACCOUNTS, stack: stack.push()) } } // body }