taler-ios

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

commit 315ff479f478a6e6fa6558cccea3327d9006c259
parent 162ebba56d84ca2c01d3add213d86842872432f0
Author: Marc Stibane <marc@taler.net>
Date:   Mon,  8 Jun 2026 18:08:05 +0200

cleanup

Diffstat:
MTalerWallet1/Views/Transactions/TransactionPayDetailV.swift | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/TalerWallet1/Views/Transactions/TransactionPayDetailV.swift b/TalerWallet1/Views/Transactions/TransactionPayDetailV.swift @@ -57,16 +57,6 @@ struct TransactionPayDetailV: View { Text(fulfillmentMessage) .talerFont(.body) } - if let products = info.products { - ForEach(products) {product in - Section { - if let product_id = product.product_id { - Text(product_id) - .talerFont(.body) - } - } - } - } } if let abortReason = details.abortReason { if let exchangeResponse = abortReason.exchangeResponse, @@ -82,6 +72,16 @@ struct TransactionPayDetailV: View { } } } + if let products = info?.products { + ForEach(products) { product in + if let product_id = product.product_id { + Section { + Text(product_id) + .talerFont(.body) + } + } + } + } } }