From 4c3619d36fc25fa8397153a6a833d2450630cfbd Mon Sep 17 00:00:00 2001 From: saiy2k Date: Mon, 16 Sep 2024 10:15:19 +0530 Subject: [PATCH] Fix: #324: [Progress Page] View Transaction should show swap tx --- lib/swap/swap_page_progress.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/swap/swap_page_progress.dart b/lib/swap/swap_page_progress.dart index 74e937ab..70b73bb0 100644 --- a/lib/swap/swap_page_progress.dart +++ b/lib/swap/swap_page_progress.dart @@ -129,7 +129,7 @@ class _ChainSwapProgressWidgetState extends State { BBButton.big( label: 'View Transaction', onPressed: () { - context.push('/tx', extra: [tx, false]); + context.push('/tx', extra: [tx, true]); }, ).animate().fadeIn(), // // if (paid && !settled) const BBText.body('Closing the swap ...'),