fix split bill

This commit is contained in:
Efril
2026-03-04 23:30:52 +07:00
parent a739e1c29e
commit 200f996d3e
6 changed files with 197 additions and 55 deletions
@@ -63,7 +63,10 @@ class PaymentPage extends StatelessWidget implements AutoRouteWrapper {
(data) {
if (context.mounted) {
context.router.replace(
PaymentSuccessSplitBillRoute(orderId: order.id),
PaymentSuccessSplitBillRoute(
orderId: order.id,
orderItems: order.orderItems,
),
);
}
},