commit 9387c893ed8c7516aa34824266bb2d3824a74c47 parent 367047f3dfae1d35fa8c1e56e884de917225eff7 Author: Marc Stibane <marc@taler.net> Date: Wed, 26 Jun 2024 15:04:49 +0200 Confirm->Authorize Diffstat:
| M | TalerWallet1/Views/Transactions/TransactionSummaryV.swift | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Transactions/TransactionSummaryV.swift b/TalerWallet1/Views/Transactions/TransactionSummaryV.swift @@ -160,7 +160,7 @@ struct TransactionSummaryV: View { action: deleteAction) } } // Delete button if let doneAction { - Button(transaction.shouldConfirm ? "Confirm later" : "Done", action: { doneAction(stack.push()) } ) + Button(transaction.shouldConfirm ? "Authorize later" : "Done", action: { doneAction(stack.push()) } ) .buttonStyle(TalerButtonStyle(type: transaction.shouldConfirm ? .bordered : .prominent)) } // Done button }.id(viewId) // change viewId to enforce a draw update