comment updates

This commit is contained in:
sneurlax 2023-01-23 14:46:22 -06:00
parent 277807309b
commit 8ba76e492e

View file

@ -48,10 +48,11 @@ class BuyWarningPopup extends StatelessWidget {
BuyResponse<SimplexOrder> order = await newOrder(quote); BuyResponse<SimplexOrder> order = await newOrder(quote);
BuyResponse<bool> response = BuyResponse<bool> response =
await redirect(order.value as SimplexOrder).then((order) { await redirect(order.value as SimplexOrder).then((order) {
// TODO save order
Navigator.of(context, rootNavigator: isDesktop).pop(); Navigator.of(context, rootNavigator: isDesktop).pop();
Navigator.of(context, rootNavigator: isDesktop).pop(); Navigator.of(context, rootNavigator: isDesktop).pop();
// How would I correctly popUntil here? // How would I correctly popUntil here?
// TODO save order
// TODO show order confirmation page
return order; return order;
}); });
}, },