This commit is contained in:
2025-11-12 21:44:54 +03:00
parent 1e508fc63e
commit 3c6835c678
6 changed files with 25 additions and 18 deletions

View File

@@ -698,7 +698,7 @@ export const selectGrandTotal = (state: RootState) => {
const taxAmount = selectTaxAmount(state);
const subtotal = selectCartTotal(state);
const deliveryFee =
state.order.orderType !== OrderType.DineIn
state.order.orderType === OrderType.Delivery
? Number(state.order.restaurant?.delivery_fees) || 0
: 0;