commit 249517c97b965486ca10e2ece25cb537877cc661
parent 36ccf9613325f2403c7232be20e321b3d71df379
Author: Marc Stibane <marc@taler.net>
Date: Mon, 9 Dec 2024 14:59:28 +0100
re-add missing baseURL for regional
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/TalerWallet1/Views/Balances/BalancesSectionView.swift b/TalerWallet1/Views/Balances/BalancesSectionView.swift
@@ -101,6 +101,13 @@ extension BalancesSectionView: View {
transactions: $completedTransactions,
reloadAllAction: loadCompleted)
Section {
+ if scopeInfo.type == .exchange {
+ let baseURL = scopeInfo.url?.trimURL ?? String(localized: "Unknown payment provider", comment: "exchange url")
+ Text(baseURL)
+ .talerFont(.subheadline)
+ .foregroundColor(.secondary)
+ // .listRowSeparator(.hidden)
+ }
BalanceCellV(stack: stack.push("BalanceCell"),
scope: balance.scopeInfo,
amount: balance.available,