v5.0.1 [skip ci]

This commit is contained in:
OmarHatem 2025-05-29 18:09:39 +03:00
parent d332377a2b
commit 418fdb62d3
5 changed files with 8 additions and 7 deletions

View file

@ -294,7 +294,9 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
.pendingTransactionFeeFiatAmountFormatted,
outputs: widget.exchangeTradeViewModel.sendViewModel.outputs,
onSlideComplete: () async {
Navigator.of(bottomSheetContext).pop();
if (bottomSheetContext.mounted) {
Navigator.of(bottomSheetContext).pop();
}
widget.exchangeTradeViewModel.sendViewModel.commitTransaction(context);
},
);