taler-ios

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

commit c4c4e6d15c6d358e8697f10e25d247f18a6eb7df
parent ce8cc1a88814c06825cd5f39f58a3cff37428bad
Author: Marc Stibane <marc@taler.net>
Date:   Thu, 18 Jul 2024 15:43:22 +0200

Pass in currencyInfo

Diffstat:
MTalerWallet1/Views/Balances/BalancesSectionView.swift | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/Balances/BalancesSectionView.swift b/TalerWallet1/Views/Balances/BalancesSectionView.swift @@ -82,6 +82,7 @@ extension BalancesSectionView: View { } BalancesNavigationLinksView(symLog: symLog, stack: stack.push("Section"), + currencyInfo: currencyInfo, balance: balance, amountToTransfer: $amountToTransfer, // does still have the wrong currency summary: $summary, @@ -237,8 +238,9 @@ fileprivate struct BalancesPendingRowView: View { fileprivate struct BalancesNavigationLinksView: View { let symLog: SymLogV? let stack: CallStack + let currencyInfo: CurrencyInfo let balance: Balance - + // let sectionCount: Int @Binding var amountToTransfer: Amount // does still have the wrong currency @Binding var summary: String